How can/should I create some \"custom control\" in ASP.NET MVC 3? I have red about partial views, ViewUsersControl
, Html.RenderAction
, but I still don\
As you have mentioned that you can use Partial Views. Yes you can use Partial Views, which is the most effective and efficient way.
For Ajax rendering you can always use
@using (Ajax.BeginForm("Details", new { id = Model.Post.PostId }, new AjaxOptions
{
Few of the links you would like to see
Rendering partial view in ASP.Net MVC3 Razor using Ajax
Render Partial Views using JQuery in MVC3