I have a view with Html.BeginForm() that calls a partial view(mentioned below and has no Form) passing in the main viewmodel. The Model has Data Annotation.
I have a list of Contact objects, from which, I just want a subset of attributes. So I used LINQ projection to create an anonymous list and I passed that to a partial view. But when I use that list in
MVC 3 with Razor question about partial views. I have this : @model MvcGroupie.Models.Message @{ ViewBag.Title = \"Details\";
I am developing an application using ASP.Net MVC and jQuery. Depending on users action, I load partial views into the page using jQuery\'s $.ajax method.