below is one of my action method
-----------------------------
public ActionResult Index()
{
if (Session["uId"] != null)
{
return View(db.U_UserMaster.ToList());
}
return RedirectToAction("Index", "Login");
}
-----------------------------------
now i have to check that at every action method so is there any proper standard way??
Go to the complete details ...