> ASP ASPError 对象的属性

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)
%>
参考手册

W3c0.com 提供的内容仅用于培训。我们不保证内容的正确性。通过使用本站内容随之而来的风险与本站无关。W3c0 简体中文版的所有内容仅供测试,对任何法律问题及风险不承担任何责任。 当使用本站时,代表您已接受了本站的使用条款和隐私条款。版权所有,保留一切权利。 鲁ICP备15022115号