5
Reply

Checking Accessibility of a View in MVC5

Sabab Zulfiker

Sabab Zulfiker

Dec 20 2017 4:02 AM
148
In webform after log in into an account, we use the following code in the Page Load function of each .aspx file to check whether the page is accessible or not:
 
if (Session["User"]!=null)
{
Response.Redirect("LoggedIn.aspx);
}
 
What should I do for performing the same thing in MVC5 ??

Answers (5)