Http Handler Forms Auth

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,773
Messages
2,569,594
Members
45,121
Latest member
LowellMcGu
Top