ASP Status 屬性
asp status 屬性

status 屬性規(guī)定由服務(wù)器返回的狀態(tài)行的值。
提示:請(qǐng)使用此屬性來修改由服務(wù)器返回的狀態(tài)行。
語法
response.status=statusdescription
參數(shù) | 描述 |
---|---|
statusdescription | 三位數(shù)的數(shù)字,以及代碼的描述,比如 404 not found 。 注意:狀態(tài)值是在 http 規(guī)范中定義的。 |
實(shí)例
<%
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
%>

相關(guān)文章
- ASP 使用 CDOSYS 發(fā)送電子郵件
- ASP Drive 對(duì)象
- ASP Dictionary 對(duì)象
- 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 方法