Ask a Question related to ASP.NET Security, Design and Development.
-
bg #1
authenticate except one page
i use form based authenticatiżon. But in my project only one file must use
anonymous access.
how can i do that?
thanks
bg
bg Guest
-
Use CF to authenticate against HTACCESS
I have a page that we want to link to other webservers. Some of these webservers (Linux) have implemented security via HTACCESS. We have the... -
Authenticate with a webservice
I know how to authenticate to a webservice using either of these ways(Assuming that rService represents the webservice): 1) rService.Credentials... -
How to authenticate HttpWebRequest?
Hi, i have a protected part of application ("security" subdirectory is protected by authentication mode="Forms"). i'd like to give a user a... -
authenticate module
Hi, I like to use WWW::Mechanize to scrape a website. However the website has a authentication page. Is there a perl module I can use to perform... -
C program to authenticate user on AIX?
Hi Can someone please supply me with a program (perhaps the C source) that authenticates a user on AIX (against the password/shadow/security... -
Brock Allen #2
Re: authenticate except one page
You can use the <location> element in your web.config:
<configuration>
<location path="TheOneFile.aspx">
<authorization>
<allow users="*" />
</authorization>
</location>
</configuration>
-Brock
DevelopMentor
[url]http://staff.develop.com/ballen[/url]
> i use form based authenticatiżon. But in my project only one file must
> use anonymous access.
>
> how can i do that?
>
> thanks
>
> bg
>
Brock Allen Guest



Reply With Quote

