How can I capture and handle static file requests with asp.net?
I've tried the "IModule" and "Global.asax" with BeginRequest
but
the request is not captured.
Is there some setting in IIS to direct some Component (IModule / Handler / Global.asax / DLL) in asp.net?
Or some way to direct requests to some DLL made with C #?
For example: "get http://localhost/myapp/report/report1.html"
How can I capture this request?
I could not do, get in asp.net.
I want to be able to check the permission, and can handle the file, and handle the response.