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)
%>


版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码