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"); } }

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^