正确响应 HEAD 请求
我有一个 IHttpHandler
提供动态生成的文件。我希望响应 HEAD
请求,让客户端知道文件是否已更改。
我需要发送最后更改日期和文件大小,我是否必须使用 Response.AddHeader() 或是否有更简洁的方法?
I have an IHttpHandler
serving dynamically generated files. I wish to respond to HEAD
requests to let the client know whether the file has changed.
I need to send the last change date and the file size, do I have to use Response.AddHeader()
or is there a cleaner way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后修改时间,可以调用:
确定需要设置尺寸吗?框架通常会根据响应的实际大小自动处理这一问题。
For the last modified time, you can call:
Are you sure you need to set the size? The Framework usually takes care of that automatically, based on the actual size of the response.