ASP ASPError 对象的属性
最后更新于:2022-03-26 23:43:23
ASP ASPError 对象的属性
ASPCode
ASPCode 属性返回由 IIS 生成的错误代码。
ASPDescription
ASPDescription 属性返回错误的详细描述。
Category
Category 属性返回错误源(错误是由 IIS 、脚本语言还是组件产生的?)
Column
Column 属性返回产生错误的 ASP 文件中的列位置。
Description
Description 属性返回关于错误的简要描述。
File
File 属性返回产生错误的 ASP 文件的名称。
Line
Line 属性返回产生错误的 ASP 文件中的行位置。
Number
Number 属性返回错误的标准 COM 错误代码。
Source
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)
%>