Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个IHttpHandler服务动态生成的文件。我希望响应HEAD请求,让客户知道文件是否已更改。
IHttpHandler
HEAD
我需要发送最后更改日期和文件大小,我必须使用Response.AddHeader()还是有更清洁的方法?
Response.AddHeader()
对于最后修改时间,您可以调用:
Response.Cache.SetLastModified()
您确定需要设置尺寸吗?框架通常会根据响应的实际大小自动处理这些问题。