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\'ve g
I think you need to go into IIS (I assume you're using II 6) and configure ASP.NET to handle wildcard extensions. Because although you've mapped the .flv extension, IIS will handle Static/Index.htm normally and not pass it to ASP.NET.
http://professionalaspnet.com/archive/2007/07/27/Configure-IIS-for-Wildcard-Extensions-in-ASP.NET.aspx
You can probably configure IIS for just this static folder, though I've never tried this.