Author: Joe Stagner | Posted on: 2/12/2010 9:55:25 AM | Views : 1250

What happens when you need to protect your whole site so that only Authenticated users can access our site.
Since I received this question twice this week I thought I'd share a tip.
To allow ONLY authenticated access to your site using Forms authentication you can add a section like this on e to your application's web.config file.
<authentication mode="Forms"> <forms loginUrl="Login.aspx" name="Login" protection="All"/> </authentication> ...

Go to the complete details ...