Ask a Question related to ASP.NET Security, Design and Development.
-
Zeng #1
how to by-pass forms authentication in a subfolder
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 [url]www.myapp.com/testing/check.aspx[/url]
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...
Zeng Guest
-
Forms Authentication in a subfolder
Our web site is mostly classic ASP. I recently created a small ASP.NET application that will reside in a subfolder a few levels deep. I want to... -
Can I pass ASP Basic Auth Credentials to an APS.NET Forms Authentication site?
I am converting an ASP Website running Windows NT 4.0 to ASP.NET running Windows 2000 on a different computer across the Internet. During this... -
Forms authentication in a subfolder problem, please help
Hi, I've created a little site for my sports club. In the root folder there are pages that are viewable by every anonymous user but at a certain... -
Authentication ticket, cookieless, forms authentication?
Hi. I want to use Forms Authentication, cookieless. The issue is setting the Authentication Ticket without using cookies (!) That is, the... -
Forms authentication for subfolder yields 404
Thanks for all the help! I solved the problem. "joe" <contact_by_Newsgroup_only.please> wrote in message... -
Paul Glavich #2
Re: how to by-pass forms authentication in a subfolder
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...that> 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[url]www.myapp.com/testing/check.aspx[/url]> within the app that doesn't require user to login ?
>
> For example, I would like to have this pageit> within "testing" folder to open to public w/o request users to login, if> 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...
>
>
>
Paul Glavich Guest



Reply With Quote

