Mapping specific folder to HttpHandler in web.config
Is it possible to map all file extensions in a folder to a specific HttpHandler (assuming that their file extensions are mapped to aspnet_isapi.dll in IIS) ?
Is it possible to map all file extensions in a folder to a specific HttpHandler (assuming that their file extensions are mapped to aspnet_isapi.dll in IIS) ?
I am trying to design a system for something like this with ASP.net/C#.
I have in my project a page DownloadDocument.aspx and it’s codebhind is DownloadDocument.aspx.cs
I would like to intercept any request made to the server for XML files. I thought that it might be possible with an HttpHandler. It’s coded and it works… on localhost only (?!?!).
I want PDF files in MOSS 2007 Publishing site document libraries to open in a new window. Is it possible to achieve this by creating a custom HttpHandler? I don’t want to mess with a site definition for something as basic as this…
Anyone got an idea of how to render an aspx page inside of an HttpModule and stream it back to the browser?
I am trying to reproduce a threading error condition within an HTTP Handler.
I have an ashx file which returns a localised message. This is called from an Ajax request. I need to access the Asp.net ResourceManager in the ashx file.