J
jbrozek
I have created a custome Http Handler that handles pages on my site
with the form of
*.tt
I'm also using Forms Authentication to control access to the site, but
I want any users to be able to access *.tt pages.
What would I need to put into the web.config for FormAuth to ignore
these types of pages, just like the following.
<!-- Allow all users to the default page -->
<location path="default.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
I want something like this
<!-- Allow all users to the *.tt page -->
<location path="*.tt">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
Thanks for the help.
JB
with the form of
*.tt
I'm also using Forms Authentication to control access to the site, but
I want any users to be able to access *.tt pages.
What would I need to put into the web.config for FormAuth to ignore
these types of pages, just like the following.
<!-- Allow all users to the default page -->
<location path="default.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
I want something like this
<!-- Allow all users to the *.tt page -->
<location path="*.tt">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
Thanks for the help.
JB