Skip to main content

Posts

Showing posts with the label Redirect from a view to another view

Redirect from a view to another view using MVC 5

We can redirect a view to another view in mvc 5. The below code sample might help you for redirection using  Response.Redirect ( "~/Account/Login" ); @{ Models.UserSession userSession = (Models.UserSession)Session["userSession"]; if (userSession == null) { Response.Redirect("~/Account/Login"); } }