asp.net 2.0 handler useage

  • Thread starter Thread starter Aaron
  • Start date Start date
Yes, it is. HTTP handler can be mapped to a file extension (such as .zip),
so that file with a name plus that extension (anyfilename.zip) does not
physically exist. E.g request is then processed by the handler.

You just need to do the mapping in IIS and in ASP.NET's web.config file so
that IIS and ASP.NET know that extension is going to be served by ASP.NET
and a custom HTTP handler (in ASP.NET)

For the reference:;

Introduction to HTTP Handlers
http://msdn2.microsoft.com/en-us/library/ms227675.aspx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top