I\'m creating a web application using ASP.NET MVC 4 and C#.
I want all users to be logged in before using application.
I\'m using ASP.NET Membership with a c
Use [Authorize] at the class level
if you want to allow anonymous access to some actions use [AllowAnonymous]