Developing an ISAPI filter

Sujay Ghosh picture Sujay Ghosh · Feb 5, 2011 · Viewed 8.4k times · Source

I want to develop an ISAPI filter which shall read the headers of an URL, this shall talk to an ASP .NET application . Can this be achieved in C# , or do I need to develop this in C++ , and create a CLI/C++ DLL so that the ASP .NET application can communicate with the C++ dll .

Answer

SRM picture SRM · Feb 5, 2011

In .Net you use HTTPModule and HTTPHandlers to accomplish what ISAPI gave you before.

Here is a decent MSDN article: http://msdn.microsoft.com/en-us/library/bb398986.aspx