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 ??