经典 ASP:检查标头是否发送到客户端
在经典 ASP 中,我们能否判断 HTTP 标头是否已发送到浏览器?
在 PHP 中,我们可以使用 headers_sent() 来实现此目的。
使用IIS7
Can we tell if HTTP headers are already sent to the browser, in classic ASP?
In PHP, we can use headers_sent() for this.
Using IIS7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您检查过请求或响应对象吗?这是我能想到的唯一可以显示标题信息的东西。
http://www.w3schools.com/asp/asp_ref_request.asp
Have you checked out the Request or Response Objects? That's the only thing I can think of that would show the header information.
http://www.w3schools.com/asp/asp_ref_request.asp
使用此示例/教程:
http://www.w3schools.com/asp/coll_servervariables.asp
ALL_HTTP -- 返回客户端发送的所有 HTTP 标头。始终以 HTTP_ 为前缀并大写
Response.Write(Request.ServerVariables ("ALL_HTTP"))
use this example/tutorial:
http://www.w3schools.com/asp/coll_servervariables.asp
ALL_HTTP -- Returns all HTTP headers sent by the client. Always prefixed with HTTP_ and capitalized
Response.Write(Request.ServerVariables ("ALL_HTTP"))