Developing an ISAPI filter

北战南征 提交于 2019-12-11 01:46:56

问题


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 .


回答1:


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



来源:https://stackoverflow.com/questions/4909340/developing-an-isapi-filter

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!