I work on my mvc5 project.
I have this action method:
public PartialViewResult Login(string returnUrl)
{
ViewBag.ReturnUrl = returnUrl;
return PartialView();
}
HTML:
<div id="result"></div>
I need to access to the action type above and to put the returned result in div.
How can I implement it?Can I use any HTML helpers?