Isapi extension

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

Hi, I'm about to make an isapi extension. Before I begin I would like to know if theres an equivalent int hte .net framework that works much the same way?

best regards Greg.
 
Greg,

You might want to consider using ASP.NET instead, and creating classes
that implement either the IHttpAsyncHandler, the IHttpHandler, or the
IHttpModule interfaces. With them, you get pretty good control over any
requests that come in for ASP.NET.

The only drawback is that you have to have ASP.NET process the file type
(by registering it with the ISAPI dll for ASP.NET). So if you needed to
proceess requests for .jpg files, you would have to register it to be
handled by the ISAPI dll for ASP.NET.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Greg said:
Hi,

Hi, I'm about to make an isapi extension. Before I begin I would like to
know if theres an equivalent int hte .net framework that works much the same
way?.
 

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