©
Ce document utilise Manuel du site Web PHP chinois Libérer
ASPCode 属性返回由 IIS 生成的错误代码。
ASPDescription 属性返回错误的详细描述。
Category 属性返回错误源(错误是由 IIS 、脚本语言还是组件产生的?)
Column 属性返回产生错误的 ASP 文件中的列位置。
Description 属性返回关于错误的简要描述。
File 属性返回产生错误的 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)
%>