两个 HttpHandler 处理相同的文件类型

发布于 2024-10-10 08:43:57 字数 206 浏览 6 评论 0原文

在我的新工作中,他们已经编写了一个httphandler来处理所有.aspx文件,并且他们没有使用asp.net的httphandler。现在,我想对项目中的某些网页(.aspx 文件)使用 asp.net 的常规 .aspx httphandler,而其他页面需要使用其自定义的 httphandler 进行处理,即相同文件类型(.aspx)的 2 个 httphandler ,如何做到这一点?

In my new job, they have already written an httphandler to handle all the .aspx files, and they are not using asp.net's httphandler. Now, I want to use asp.net's regular .aspx httphandler for some web pages (.aspx files) in the project and the other pages need to be handled using their customized httphandler, i.e., 2 httphandlers for same file type (.aspx), how to do this?

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

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

发布评论

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

评论(1

爱本泡沫多脆弱 2024-10-17 08:43:57

如果您将页面放在自己的目录中,则可以删除自定义处理程序并将常规处理程序添加到位于同一目录中的 web.config 文件中。

请参阅 MSDN 上的文档,特别是有关配置的部分继承


更新:

另一种选择是为自定义处理程序和普通处理程序使用不同的文件扩展名,并相应地注册处理程序。

If you place your pages in their own directory, you can remove the custom handlers and add the normal ones in a web.config file placed in the same directory.

See this document on MSDN, in particular the section about Configuration Inheritance.


Update:

Another option is to use different file extensions for the custom handler and for the normal ones and register the handlers accordingly.

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