Re: Basic Forms Authentication question
From: Michal A. Valasek (news_at_altaircom.net)
Date: 07/29/03
- Next message: Mike LeBlanc: "RE: Sharing Authentication cookies between 1.0 and 1.1"
- Previous message: R-D-C: "Basic Forms Authentication question"
- In reply to: R-D-C: "Basic Forms Authentication question"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Tue, 29 Jul 2003 16:47:26 +0200
| I have a virtual directory set up with anonymous access only, web.config
| contains the following but when I go to the site it ignores the security
and
| never redirects to login.aspx. I know this will be a stupid problem but
| please help!
you must specify not only authentication, but also the authorization
conditions. The following web.config example should help:
<configuration>
<system.web>
<!-- here you would setup authentication method -->
<authentication mode="Forms">
<forms loginUrl="/Default.aspx" timeout="30" path="/" protection="All"
/>
</authentication>
<!--
now specify authorization for root folder
'*' means all users, '?' means anonymous users
the following setting will allow access to all users except anonymous
-->
<authorization>
<deny users="?" />
<allow users="*" />
</authorization>
</system.web>
<!--
here we specify different rights for the 'noauth' folder, where
everyone
(even anonymous users) has access
-->
<location path="noauth">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
<!--
here we specify different rights for the 'admin' folder, where only
members of 'Admins' role can go
-->
<location path="admin">
<system.web>
<authorization>
<allow roles="Admins" />
<deny users="*" />
</authorization>
</system.web>
</location>
</configuration>
-- Michal A. Valasek, Altair Communications, http://www.altaircom.net Please do not reply to this e-mail, for contact see http://www.rider.cz
- Next message: Mike LeBlanc: "RE: Sharing Authentication cookies between 1.0 and 1.1"
- Previous message: R-D-C: "Basic Forms Authentication question"
- In reply to: R-D-C: "Basic Forms Authentication question"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|