top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to Redirect between Areas in ASP.NET MVC?

0 votes
288 views
How to Redirect between Areas in ASP.NET MVC?
posted Jun 4, 2016 by Latha

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
public ActionResult Index()

{

return RedirectToAction("ActionName", "ControllerName", new { area = "AreaName" });

}
answer Jun 4, 2016 by Shivaranjini
...