如何将 httpmodule 代码块添加到我的 ASP.NET Web 应用程序?

发布于 2024-10-21 09:13:25 字数 114 浏览 1 评论 0原文

我有一个Web应用程序的解决方案,我想为其创建一个新的http模块,但无法在VS2010 IDE中找到添加http模块的方法。

我尝试右键单击并添加新项目,但没有找到列出的 httpmodule 。

i have a solution with a web application that i want to creat a new http module for and cant find a way in the VS2010 IDE to add a httpmodule.

im trying to right click and add new item but don't find httpmodule listed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

将军与妓 2024-10-28 09:13:25

HTTP Module是一个实现IHttpModule的类。只需引用 System.Web.dll 并使用 System.Web 命名空间,实现接口,这就是您所需要的一切!

那么,您需要在 Web.config 的“modules”中添加一个条目:

通过在 system.web 节点中添加子“httpModules”元素来实现这一点:

<httpModules>
  <add name="Blah" type="Assembly qualified name of HTTP Module class [namespace.type, assembly]"/>
</httpModules>

并在 system.webServer 子“modules”元素中添加:

<modules>
  <add name="Blah" type="Assembly qualified name of HTTP Module class [namespace.type, assembly]"/>
</modules>

And HTTP Module is a class implementing IHttpModule. Just reference System.Web.dll and use System.Web namespace, implement the interface and this is everything you need!

Well, you'll need to add an entry in "modules" in your Web.config:

Do so by adding a child "httpModules" elements in system.web node:

<httpModules>
  <add name="Blah" type="Assembly qualified name of HTTP Module class [namespace.type, assembly]"/>
</httpModules>

And in system.webServer child "modules" element:

<modules>
  <add name="Blah" type="Assembly qualified name of HTTP Module class [namespace.type, assembly]"/>
</modules>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文