5
Answers

Checking Accessibility of a View in MVC5

Photo of Sabab Zulfiker

Sabab Zulfiker

7y
601
1
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)