6
votes
2answers
199 views

Avoid deleting folder on Web Publish

I'm deploying my application to an Azure Website. I've configured the Publishing Profile succesfuly and setup tfspreview.com to publish automatically using continuous integration on each code commit. ...
1
vote
2answers
1k views

MVC Surface Controller & Umbraco Current Node

I'm trying to write a childaction function in a surface controller that gets called by a macro to render a PartialView. I need in this function to gain access to my current page properties to then ...
0
votes
2answers
270 views

Mvc doesn't render nested master page in Umbraco

I have a master template that calls "RenderBody()" and a "OneIn" template that is a child under the Master page. I also call the RenderBody() function in the OneIn template but then it gives me this ...
1
vote
1answer
127 views

Umbraco MVC Check is Partial has content

I've got a template on Umbraco, I've setup a Partial View that checks if there is a Hero Unit selected for the page. I want to check if this Partial is sending any content into the page, if it isn't I ...
0
votes
1answer
44 views

umbraco mvc form model validation markup not showing

Running Umbraco 6.05, I have a custom model class with Data Annotations like: [Required, StringLength(100), DataType(DataType.EmailAddress), DataType(DataType.MultilineText)] and I pass the model ...
0
votes
1answer
79 views

Create a plugin based controller in Umbraco

How to create a plugin based controller in Umbraco? I have followed the guide on https://github.com/Shandem/Umbraco4Docs/blob/4.8.0/Documentation/Reference/Mvc/surface-controllers.md. But when ...
0
votes
1answer
111 views

How to display new created property value in Umbraco 5?

I just want to know on how do I get the value of a property in umbraco 5.. in version 4.7 node.GetProperty("PropertyAlias").value now. how do i use this in 5? Thanks..
1
vote
0answers
40 views

Umbraco MVC 6.05 Getting IPublishedContent object through Surface Controller

I am developping an umbraco mvc web site and im having troubles getting currentpage info within surface controller. Here is my scenario: I have a products page. And there are checkboxes which ...
0
votes
0answers
18 views

Umbraco 6 MVC4 plugin

I’m having an issue that I need some help for. I’m trying to make an MVC4 plugin for Umbraco 6.0 that enables me to use my own controllers and views, inside an umbraco template – also using custom ...
0
votes
0answers
43 views

How to use Jquery for UI interactions with Controllers in umbraco

In my umbraco site, I have one page named account information. In this form, I will show all member properties with their values for logged in member. This form also facilitates user to edit the ...
-1
votes
0answers
64 views

How to maintain state of partial views when working with multiple partial views at once

I need to design one form in which I need to have multiple sections in it. And I need to update them seperately. for ex. I am preparing a employee information form, which have multiple sections in ...