使用 Http Handler 或 Http Module 中的哪一个

发布于 2024-12-06 07:01:29 字数 181 浏览 1 评论 0原文

我们想要做一些事情,比如我们必须在对应用程序的每个请求中执行一些代码。我们希望在多个应用程序中使用相同的代码。

此代码将执行的操作是,这将检查传入的请求,并根据某些条件决定是否必须重定向。

因此,在搜索时我发现我们可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

塔塔猫 2024-12-13 07:01:29

在这种情况下,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文