<完全反應對象參考
Status屬性指定服務器返回的狀態行的值。
Tip:使用該屬性修改服務器返回的狀態行。
句法
response.Status=statusdescription
參數 | 描述 |
---|---|
statusdescription | 甲三位數和該代碼的描述中,類似404未找到。 Note:狀態值是在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
%>
<完全反應對象參考