ASP Status 属性

asp status 属性

response 对象参考手册 完整的 response 对象参考手册

status 属性规定由服务器返回的状态行的值。

提示:请使用此属性来修改由服务器返回的状态行。

语法

response.status=statusdescription

参数 描述
statusdescription 三位数的数字,以及代码的描述,比如 404 not found 。
注意:状态值是在 http 规范中定义的。

实例

<%
ip=request.servervariables("remote_addr")
if ip<>"194.248.333.500" then
  response.status="401 unauthorized"
  response.write(response.status)
  response.end
end if
%>

response 对象参考手册 完整的 response 对象参考手册
相关文章