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
%>
ASP编码教程:如何实现/使用缓存
[ASP]2015年4月15日ASP编码教程:asp缓存的分类
[ASP]2015年4月15日ASP编码教程:何谓ASP缓存/为什么要缓存
[ASP]2015年4月15日ASP编码教程:asp实现的sha1加密解密代码
[ASP]2015年4月15日ASP编码教程:asp执行带参数的sql语句实例
[ASP]2015年4月14日