Ask a Question related to ASP.NET General, Design and Development.
-
Peter Rilling #1
Can HttpHandler or HttpModule trap image requests?
Can an HttpHandler or HttpModule be invoked on non-ASP.NET pages such as
images or ASP or HTML pages? Can I trap a request for those pages? If not,
how might I trap those requests?
Peter Rilling Guest
-
authentication for httphandler
Hi, I have several httphandlers in a web app. I need to set up a very simple authentication system for users to access these handlers. The... -
Interceptor, HttpModule, WSE
I've developed a framework for ASP.NET with a custom authentication module (HttpModule). This module is already working. This framework should also... -
HttpModule
Is it possible to capture a request as it hits the server and before the post data has been completely sent to the web server? Thanks~ -
HttpHandler not working :-)
I have a simple HttpHandler //-- using System.Web; namespace Acme { public class SimpleHandler : IHttpHandler { public void... -
HttpModule for ASP and ASP.NET URL filtering
I'm interested in writing an HttpModule to clean up URLs for a site that's in a transitional phase from ASP to ASP.NET. Basically, I'd like to hide... -
Dhananjay Modak #2
Re: Can HttpHandler or HttpModule trap image requests?
I think you can:
I guess you have to register the handlers for certain file extensions - e.g.
..gif and the modules see all the requests (URLs) anyway.
Dhananjay
"Peter Rilling" <peter@nospam.rilling.net> wrote in message
news:u5L4qOrWDHA.1632@TK2MSFTNGP11.phx.gbl...not,> Can an HttpHandler or HttpModule be invoked on non-ASP.NET pages such as
> images or ASP or HTML pages? Can I trap a request for those pages? If> how might I trap those requests?
>
>
Dhananjay Modak Guest



Reply With Quote

