How do I render the partial view using jquery?
We can render the partial View like this:
<% Html.RenderPartial(\"UserDetails\"); %>
I have used ajax load to do this:
$('#user_content').load('@Url.Action("UserDetails","User")');