Name

Line — objASPError.Line

Synopsis

The Line property is a long value representing the line number where the error-producing code occurs.

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 Line Example Script ****
<%
' This script demonstrates the use of the Line
' property of the ASPError object.
Dim objMyASPError

Set objMyASPError = Server.GetLastError( )

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

When the error-generating scripts are executed, the preceding Line script generates the following three responses:

Error Generating Script #1:

The value of the Line property is 11

Error Generating Script #2:

The value of the Line property is 11

Error Generating Script #3:

The value of the Line property is 14

Notes

The line count starts with the very first ASP line of code and begins with 1.

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.