Ask a Question related to ASP.NET Security, Design and Development.
-
SteveR #1
exclude a page from forms authentication
Is it possible to exclude a web page from forms authentication?
--
Steve
SteveR Guest
-
forms authentication returns 401 instead of going to login page
Hi, I have an app in the 1.1 framework that uses forms authentication . In the normal case, if the user requests a page and is not logged in,... -
Forms Authentication won't redirect to login page
I'm trying to set basic form authentication on a webapp. I allaccess restricted to authenticated users. After changing theWeb.config file in the... -
Forms Authentication without Login Page
Is there any way to log someone in using Forms authentication *without* using RedirectFromLoginPage()? My reason for asking is that I'm trying to... -
Forms Authentication: login page in a separate web app
Hi, I would like to create a WebApp, say MySecurityProvider, that just contains a login page that knows how to authenticate a user. And I want... -
Authentication forms and SSL on the login page
Hi all, I'm tryiing to set up security for a ASP.NET web application in order to force all the users to go to a login page with an SSL connection.... -
Brock Allen #2
Re: exclude a page from forms authentication
You can use the location element in web.config:
<configuration>
<location path="Foo.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>
This will not require autentication on Foo.aspx because we allow any user
via users="*"
-Brock
DevelopMentor
[url]http://staff.develop.com/ballen[/url]
> Is it possible to exclude a web page from forms authentication?
>
Brock Allen Guest



Reply With Quote

