ASP Status 屬性
asp status 屬性

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
%>
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 使用 CDOSYS 發送電子郵件
- ASP Drive 對象
- ASP Dictionary 對象
- ASP ADO
- ASP AdRotator
- ASP SkipLine 方法
- ASP Write 方法
- ASP Path 屬性
- ASP IsRootFolder 屬性
- ASP Exists 方法
- ASP RemoveAll 方法
- ASP AppendToLog 方法
- ASP Lock 和 Unlock 方法
- ASP LCID 屬性
- ASP SessionID 屬性
- ASP ScriptTimeout 屬性
- ASP HTMLEncode 方法
- ASP DeleteFolder 方法
- ASP FolderExists 方法
- ASP GetDrive 方法