两个 HttpHandler 处理相同的文件类型
在我的新工作中,他们已经编写了一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将页面放在自己的目录中,则可以删除自定义处理程序并将常规处理程序添加到位于同一目录中的
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.