Properties of the ASP ASPError object
ASPCode
The ASPCode property returns the error code generated by IIS.
ASPDescription
The ASPDescription property returns a detailed description of the error.
Category
The Category property returns the source of the error (was the error generated by IIS, a scripting language, or a component?).
Column
The Column property returns the column position in the ASP file where the error occurred.
Description
The Description property returns a brief description of the error.
File
The File property returns the name of the ASP file where the error occurred.
Line
The Line property returns the line position in the ASP file where the error occurred.
Number
The Number property returns the standard COM error code for the error.
Source
The Source property returns the actual source code where the error occurred.
Syntax
ASPError.ASPCode() ASPError.ASPDescription() ASPError.Category() ASPError.Column() ASPError.Description() ASPError.File() ASPError.Line() ASPError.Number() ASPError.Source()
Instance
<% 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) %>