Re: how to by-pass forms authentication in a subfolder
From: Paul Glavich (glav_at_aspalliance.com-NOSPAM)
Date: 11/25/03
- Next message: Tim Wood: "How secure are appsettings in web.config?"
- Previous message: Brad: "Re: Forms Authentication: login page in a separate web app"
- In reply to: Zeng: "how to by-pass forms authentication in a subfolder"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Tue, 25 Nov 2003 22:15:57 +1100
Use the <location> element in the web.config to specify something like :-
<location path="/testing/check.aspx">
<system.web>
<authentication mode="None" />
</system.web>
</location>
-- - Paul Glavich "Zeng" <zzy@nonospam.com> wrote in message news:OBeyZmqsDHA.2508@TK2MSFTNGP12.phx.gbl... > Hello, > > I have an application with forms authentication setting specified in the > web.config of the app root; so all users must login before they can access > any page within the app. Is there a way to have a subfolder with a page that > within the app that doesn't require user to login ? > > For example, I would like to have this page www.myapp.com/testing/check.aspx > within "testing" folder to open to public w/o request users to login, if it > has to be the whole folder "testing" must be open to public, that would be > fine - but just that folder. > > Thank you very much in advance for your help... > > >
- Next message: Tim Wood: "How secure are appsettings in web.config?"
- Previous message: Brad: "Re: Forms Authentication: login page in a separate web app"
- In reply to: Zeng: "how to by-pass forms authentication in a subfolder"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|