This code:
<%@ Language=VBScript %>
<% ldsjlasfjsdal
on error resume next
%>
Error Number: <%= Err.Number %><BR>
Error Description: <%= Err.Description %><BR>
Source: <%= Err.Source %><BR>
LineNumber: <%= Err.Line%><BR>
Produces this output:
Error Number: 13
Error Description: Type mismatch
Source: Microsoft VBScript runtime error
LineNumber:
Why is the line number not coming through?
<%@ Language=VBScript %>
<% ldsjlasfjsdal
on error resume next
%>
Error Number: <%= Err.Number %><BR>
Error Description: <%= Err.Description %><BR>
Source: <%= Err.Source %><BR>
LineNumber: <%= Err.Line%><BR>
Produces this output:
Error Number: 13
Error Description: Type mismatch
Source: Microsoft VBScript runtime error
LineNumber:
Why is the line number not coming through?