Ask a Question related to ASP.NET Security, Design and Development.
-
Andy G #1
Authorization of specific pages
I have my authorization in web.config set to <deny users="?" />, this is
what I want because we use forms authenthentication that sets a auth cookie.
We have a few pages that need to be accessed without the user having the
auth cookie. Is there a simple way to list the certain pages that you want
"unprotected"? I tried using the below and I get that stupid server error
telling you that your custom errors need to be set to off or something. I
put the below outside the already established <configuration> and
<system.web> settings. Thank you for any help or direction you might give
me.
<location path="file\path\here.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
Andy G Guest
-
Different Pool of Threads for specific pages
In Weblogic server, it's possible to specify many Pool of Threads, and assign some Servlets to each Pool of Thread. If I use Coldfusion Server as a... -
Lock out specific pages?
Hi, is it possible to lock pages from being updated with Contribute 3? Lets say you have a folder containing 6 files (index.htm, company.htm,... -
Sharing authorization/authentication between Classic ASP and ASP.NET pages?
I have an administrative website that I've built that needs to incorporate both Classic ASP and ASP.NET pages. The site needs basic password... -
How do I link to specific pages in another PDF file?
But clicking on the links merely opens the target file at page 1, i.e. it won't open at the chosen page within the selected file. If Mr.... -
Turn Off security for specific pages
In my case each page that needs to be secured has this entry in the web.config page : <location path="Webform1.aspx"> <system.web>... -
Andy G #2
Re: Authorization of specific pages
Forgot to mention that IIS settings are set up for forms authentication. The
Basic authentication is not checked and aunonymous access is checked. I
don't know if you need to know this or not.
"Andy G" <ajgould@iastate.edu> wrote in message
news:eBM7t63DFHA.3120@TK2MSFTNGP12.phx.gbl...cookie.> I have my authorization in web.config set to <deny users="?" />, this is
> what I want because we use forms authenthentication that sets a authwant> We have a few pages that need to be accessed without the user having the
> auth cookie. Is there a simple way to list the certain pages that you> "unprotected"? I tried using the below and I get that stupid server error
> telling you that your custom errors need to be set to off or something. I
> put the below outside the already established <configuration> and
> <system.web> settings. Thank you for any help or direction you might give
> me.
>
> <location path="file\path\here.aspx">
> <system.web>
> <authorization>
> <allow users="*" />
> </authorization>
> </system.web>
> </location>
>
>
Andy G Guest
-
Andy G #3
Re: Authorization of specific pages
I figured this out.
It needs to go after the already established <configuration> tag, after the
already established <system.web> tag but before the </configuration> tag at
the end of the web.config file. Hope that makes sense.
"Andy G" <ajgould@iastate.edu> wrote in message
news:eBM7t63DFHA.3120@TK2MSFTNGP12.phx.gbl...cookie.> I have my authorization in web.config set to <deny users="?" />, this is
> what I want because we use forms authenthentication that sets a authwant> We have a few pages that need to be accessed without the user having the
> auth cookie. Is there a simple way to list the certain pages that you> "unprotected"? I tried using the below and I get that stupid server error
> telling you that your custom errors need to be set to off or something. I
> put the below outside the already established <configuration> and
> <system.web> settings. Thank you for any help or direction you might give
> me.
>
> <location path="file\path\here.aspx">
> <system.web>
> <authorization>
> <allow users="*" />
> </authorization>
> </system.web>
> </location>
>
>
Andy G Guest



Reply With Quote

