经典 ASP:检查标头是否发送到客户端

发布于 2024-12-21 09:20:47 字数 102 浏览 3 评论 0原文

在经典 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回首观望 2024-12-28 09:20:47

您检查过请求或响应对象吗?这是我能想到的唯一可以显示标题信息的东西。

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

背叛残局 2024-12-28 09:20:47

使用此示例/教程:

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"))

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文