Ajax in Asp.net mvc -
I am using AJAX in mvc to refresh the partial page.
I call a partial view (i.e., a different user control) for each page and then using Html.RenderPartial () partial view.
I just want to confirm that I need to create a separate user control for every page or any other
You should make a different user control for each logical unit that you want to partially render. For more precise control, I would rather use jquery to manipulate domes rather than partially render.
Comments
Post a Comment