Web Config configuration

  • Thread starter Thread starter Ori
  • Start date Start date
O

Ori

Hi,

I'm using the authorization settings on the web.config file for my
ASP.NET application and I change it to deny all users and I'm using
the Form Security redirect option which provided by the framework.

My problem is that there are still some pages which i would like to
give access to even without a certification ticket (about us,FAQ
pages) other than the default page.

Does someone knows how to do so?

Thanks.
 
You could enter somethign like this in yoru web.config


<location path="faq.aspx">
<system.web>
<authorization>
<deny users="*" />
</authorization>
</system.web>
</location>
 
Thanks, but i didn't understand exactly where i can put it.

My authorization node is look like this now:

<authorization>
<deny users="?" />
</authorization>

??

Thanks,

Ori.
 
Back
Top