Appreciate the suggestions but nothing seems to be working let me spell out in more detail what I have done so far:
First of all I have two web.config files one at the level of the log in page and one which is with the rest of the website in a Secure folder. The web.config which is at the level of the login table looks like this initially:
...<!-- Login Level -->
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="All" timeout="30" path="/"/>
</authentication>
<authorization>
<allow users="*"/>
</authorization>
...
Web.config at the level of the Secure folder looks like this initially:
...
<authorization>
<deny users="?" />
</authorization>
...
These settings don't allow anyone in whether properly logged in or typing the URL to the secured page everyone is redirected to login.
Then I tried this:
...<!-- Login Level -->
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="All" timeout="30" path="/"/>
</authentication>
<authorization>
<allow users="*"/>
<deny users="?" />
</authorization>
...
...<!--Secure level -->
<authorization>
<deny users="?" />
</authorization>
...
Same result as previous no one allowed in. Next try looked like this:
...<!-- Login Level -->
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="All" timeout="30" path="/"/>
</authentication>
<authorization>
<!--<allow users="*"/>-->
<deny users="?" />
</authorization>
...
...<!--Secure level -->
<authorization>
<deny users="?" />
</authorization>
Same result -- next try looked like this:
...<!-- Login Level -->
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="All" timeout="30" path="/"/>
</authentication>
<authorization>
<allow users="*"/>
<deny users="?" />
</authorization>
...
...<!--Secure level -->
<authorization>
<allow users="*"/>
<deny users="?" />
</authorization>
...
This setting allows everyone entry even non-logged in users. My last try looked like this:
...<!-- Login Level -->
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="All" timeout="30" path="/"/>
</authentication>
<authorization>
<allow users="*"/>
<deny users="?" />
</authorization>
...
...<!--Secure level -->
<authorization>
<!--<allow users="*"/>-->
<deny users="?" />
</authorization>
...
This setting denied all users? Please help very confused at this point.