I have something like
@{ Html.RenderPartial(@"~/Views/Management/_Main.cshtml"); }
Can I change this view without page refreshing? I mean, I want to render few partials on one place. Like gallery, may be. I mean, I press the link – some section loaded, depending on argument.
First I think about – master page (Layout page). Any other ideas?
You can dynamically load a partial view into a div without a page reload by using the
@Ajax.ActionLink()method.Have a look at this post.