何时编写处理程序或模块..有什么例子吗?
我已经阅读了这些内容,但仍然困惑我将编写 http 处理程序而不是 http 模块的用例是什么(反之亦然)。每个用例的一些示例将会有所帮助
I have read about these but still confused what are the uses cases where I will write a http handler and not http module ( and vice versa). A few example of uses cases for each will help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HTTP 处理程序和 HTTP 模块概述
HTTP Handlers and HTTP Modules Overview
HTTP 处理程序就像 ASPX 页面。处理程序在您的 web.config 中注册以响应特定 URL,例如“*.css”或“MyHandler.xyz”。
HTTP 模块处理所有请求。如果您需要在所有请求开始被处理程序处理之前对其进行处理,那么您需要一个 HTTP 模块。安全性和缓存是使用模块的主要示例。
An HTTP handler is like an ASPX page. A handler is registered in your web.config to respond to a particular URL such as "*.css" or "MyHandler.xyz".
An HTTP module processes all requests. If you need to handle something for all of your requests before they start being processed by their handler, then you want an HTTP module. Security and caching are the main examples for using a module.