Re: Two Authentication
From: Saravana (saravank_at_sct.co.in)
Date: 01/06/05
- Next message: Joerg Jooss: "Re: sending xml over tcp/ip"
- Previous message: Saravana: "Re: Permissions for ASPNET Account"
- In reply to: Boozer: "Two Authentication"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 06 Jan 2005 08:19:26 GMT
If you dont want to protect certain folder in your application by forms
authentication, you can specify that in location tag in web.config file. For
example,
<configuration>
<location path="Folder2">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
for more details, refer this article
http://www.dotnetbips.com/displayarticle.aspx?id=117
-- Saravana http://dotnetjunkies.com/WebLog/saravana/ www.ExtremeExperts.com "Boozer" <Boozer@discussions.microsoft.com> wrote in message news:3AEA3C47-2CBB-4FD2-AD09-2E033A635EC2@microsoft.com... > I have a portion of an application that needs to be protected by forms > authentication and another portion that does not. I have created a subfolder > and put different web.config files in each. That all works fine. The only > problem is that the code-behind forms can't find the project dll. If I copy > the dll into a bin folder in the subfolder it works fine. How do I get the > forms to look in the main application bin folder for the dll?
- Next message: Joerg Jooss: "Re: sending xml over tcp/ip"
- Previous message: Saravana: "Re: Permissions for ASPNET Account"
- In reply to: Boozer: "Two Authentication"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|