I defined a Controller to force authentication by using the [Authorize] attribute. When a session times out, the request is still passed down and executed instead of forcing a redirect.
I do use FormsAuthentication to login and logoff users.
Any ideas on how to control that?
Example:
[Authorize]
public class ProjectsController : Controller
{
public ActionResult Index()
{
return View();
}
}