How can I render Partial views in asp.net mvc 3?
Create your partial view something like: @model YourModelType <div> <!– HTML to render your object –> </div> Then in your view use: @Html.Partial(“YourPartialViewName”, Model) If you do not want a strongly typed partial view remove the @model YourModelType from the top of the partial view and it will default to a dynamic type. Update The … Read more