Name

Number — objASPError.Number

Synopsis

The Number property contains a long value that represents an error code returned by a COM component. This long value will be a standard COM error code.

Parameters

None

Example

This example uses the error-generating scripts listed at the end of the Comments/Troubleshooting section. It assumes that the following code has been added to the default custom error script, 500-100.ASP:

**** BEGIN Number Example Script ****
<%
' This script demonstrates the use of the Number
' property of the ASPError object.
Dim objMyASPError

Set objMyASPError = Server.GetLastError( )

Response.Write "The value of the Number property is " & objMyASPError.Number
%>
**** END Number Example Script ****

When the error-generating scripts are executed, the following three responses are generated:

Error Generating Script #1:

The value of the Number property is -2146827263

Error Generating Script #2:

The value of the Number property is -2147467259

Error Generating Script #3:

The value of the Number property is -2146828277

Notes

None

Get ASP in a Nutshell, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.