使用 Http Handler 或 Http Module 中的哪一个
我们想要做一些事情,比如我们必须在对应用程序的每个请求中执行一些代码。我们希望在多个应用程序中使用相同的代码。
此代码将执行的操作是,这将检查传入的请求,并根据某些条件决定是否必须重定向。
因此,在搜索时我发现我们可以使用 http 处理程序或 http 模块。但我不确定在这种情况下必须选择哪一个?请提出您的建议。
We want to do something like we have to execute some piece of code in each request to the application. We want to use this same code in multiple applications.
What this code will do is, this will check the incoming request and according to some conditions it will decide whether it has to redirect or not.
So while searching i found that we can use either http handler or http module. But i am not sure about which one has to chose in this case? Please give your suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,
HttpModule
。它位于管道中,您可以在其中检查每个请求。如何使用 Visual C# .NET 创建 ASP.NET HTTP 模块
http://support.microsoft.com/kb /307996
HttpHandler
是完全不同的东西。如果您为现有文件类型(例如 .aspx 等)实现 HttpHandler,您将实现 ASP.NET 运行时已实现的内容,这超出了您的要求范围。HttpModule
in this case. It sits in the pipeline where you can inspect each and every request.How To Create an ASP.NET HTTP Module Using Visual C# .NET
http://support.microsoft.com/kb/307996
HttpHandler
is altogether different thing. If you implement HttpHandler for existing file types such as .aspx etc, you will have implement what is already implemented by ASP.NET runtime which is beyond the scope of your requirement.