I am brand new to ASP.NET, and I\'m trying to find a way to easily redirect an unauthenticated user from any page on the site to the logon page. I would prefer to not put th
You can put the [Authorize] attribute over each action that needs to be authenticated.
[Authorize]
Also, make sure that this section is defined in your Web.Config: