Hi Eric,
You need to first map the extension to the ASP.NET ISAPI dll. This will tell
IIS that you want .test extension to be sent to the ASP.NET ISAPI. But you
also need to tell ASP.NET that it should process .test extension as regular
ASP.NET. This means that you must also map the extension to a HTTP Handler.
In your case, you want to add something like this in the httpHandlers
section of web.config (or machine.config if you want to apply this to the
whole server):
<add path="*.test"
verb="*"
type="System.Web.UI.PageHandlerFactory"
/>
--
Regards,
Kristofer Gafvert
http://www.gafvert.info/iis/ - IIS Related Info
"Eric" <ericp.RemoveThis@nextivr.com> skrev i meddelandet
news:eW3PAHeNIHA.4752@TK2MSFTNGP05.phx.gbl...
> Hello,
>
> I'd like to have my files with the extension ".test" be processed like
> files with the extension ".aspx"
>
> I'm using ASP.NET 1.1.4322.
>
> I've added the Application Mapping in the IIS configuration. However, the
> page is still passed through as a static page.
>
> I know this will work because there is another server in my domain that is
> already doing this. Exporting the configuration settings didn't shed any
> light.
>
> What am I missing?
>
> Thanks,
>
> Eric
> >> Stay informed about: Application Mappings