i am creating a partialview with a controller action like: public ActionResult GetPostsByUser(string userName)
In MVC 3 Beta, is there a difference between the templates MVC 3 Partial Page (Razor) and MVC 3 View Page with Layout (Razor) ?
I\'m creating an MVC2 site which is a new, refreshed version of a site built in Web Forms. Due to the nature of some of the features and the a database of statistics and their structure there is no o
I have a strongly typed Person view, that I want to render a partial in: Person View (strongly typed as person)
I have created a partial view that I\'d like to be able to re-use on different pages of my website. Currently, for each webpage I create a ViewModel that collates all the information I would like to
I have a widget for currencies which I use throughout my application.Ie. the user changes the currency from EUR -> USD, or about 13 other currencies.I have a few other use-cases such as dates but this
I got a question about MVC 2 and returning views for partials: I got two views for creating and editing a user, the views both uses a partial so i can reuse the form fields.
I\'m trying to use Html.RenderPartial in acsx file and I\'m getting an error: Compiler Error Message: CS1973: \'System.Web.Mvc.HtmlHelper\'
I have a page that contains multiple div\'s. Action on one div changes the content of other div. Each div loads a partial view from controller. For example- a div for \"Search\" and another div for \
In my Index view I have the usual Edit, Details and Delete links. I\'ve made icons for them, and since I use them everywhere I placed them in a Partial View.