Is the resource an ASP.NET resource (like an ASPX file)? If not,
you'll need to configure the application mappings to route the request
to the ASP.NET runtime.
There are screenshots and more information in this article:
http://msdn.microsoft.com/msdnmag/is...s/default.aspx
--
Scott
http://www.OdeToCode.com
On Tue, 13 Jul 2004 23:34:01 -0700, "RUSSELL MCGINNIS"
<> wrote:
>I am trying to get an HTTPModule to handle some form processing for me i.e. the form action tag points to a predefined url that doesn't exist and my BeginRequest handler check the url request and if it the predefined one it deals with the Request object etc.
>
>However control never gets into the BeginRequest handler as the 404 page is displayed. Can this be done or should I be looking for an alternative?
>
>Thanks