<完整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对象参考