最新的Web開發教程
 

ASP ASPError對象屬性


<完整ASPError對象參考

ASPCode

所述ASPCode屬性返回由IIS生成的錯誤代碼。

ASPDescription

該ASPDescription屬性返回錯誤的詳細說明。

類別

該類別屬性返回錯誤的來源(是由IIS?腳本語言?或者組件所產生的錯誤?)。

列屬性返回產生錯誤的ASP文件中的列位置。

描述

Description屬性返回錯誤的簡短說明。

文件

文件屬性返回產生錯誤的ASP文件的名稱。

Line屬性返回產生錯誤的ASP文件中的行數。

Number屬性返回錯誤的標準COM錯誤代碼。

資源

Source屬性返回錯誤發生行的實際的源代碼。

句法

ASPError.ASPCode()
ASPError.ASPDescription()
ASPError.Category()
ASPError.Column()
ASPError.Description()
ASPError.File()
ASPError.Line()
ASPError.Number()
ASPError.Source()

<%
dim objErr
set objErr=Server.GetLastError()

response.write("ASPCode=" & objErr.ASPCode)
response.write("<br>")
response.write("ASPDescription=" & objErr.ASPDescription)
response.write("<br>")
response.write("Category=" & objErr.Category)
response.write("<br>")
response.write("Column=" & objErr.Column)
response.write("<br>")
response.write("Description=" & objErr.Description)
response.write("<br>")
response.write("File=" & objErr.File)
response.write("<br>")
response.write("Line=" & objErr.Line)
response.write("<br>")
response.write("Number=" & objErr.Number)
response.write("<br>")
response.write("Source=" & objErr.Source)
%>

<完整ASPError對象參考