经典的asp响应代码

发布于 2024-11-03 05:22:21 字数 101 浏览 1 评论 0原文

我们目前有一个经典的 asp 404 错误页面。默认情况下,它返回状态代码 200 错误,我们希望它返回 404 错误代码。如何在经典 asp (vbscript) 中设置页面的状态代码?

We currently have a classic asp 404 error page. By default, it's returning a status code 200 error, and we want it to return a 404 error code. How do you set the status code for a page in classic asp (vbscript)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

逆流 2024-11-10 05:22:21

使用响应对象:

Response.Status = "404 Not found"

Use the Response object:

Response.Status = "404 Not found"
怪我鬧 2024-11-10 05:22:21

从技术上讲,200 是一个状态代码 OK,而不是错误,但基本思想是您需要告诉响应流返回 404(未找到)状态代码。 这是一种方法

Technically, 200 is a status code OK, not an error, but nevertheless, the basic idea is that you need to tell the Response stream to return 404 (Not found) for the status code. Here's one way to do that.

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