Does ASP, C#, VB.NET have a way to retrieve what line its on in code as its processing commands?
Example
1 <%
2 response.write("Your on line " & retreiveCurrentLineNumber)
3 %>
Output: Your on line 2
|
Does ASP, C#, VB.NET have a way to retrieve what line its on in code as its processing commands? Example
Output: Your on line 2 |
||||
|
|
|
You can do this:
Note there are several caveats to this.
For VB.NET it's the same thing:
As far as Classic ASP goes - I don't believe this is possible. |
|||||
|
|
|
While vcsjones answer may be exactly what you're looking for, for the purposes of debugging/troubleshooting VB.NET you may want to take a look at the Erl property of the Err object. It returns an integer indicating the line number of the last executed statement - and by line number, that means a numeric label, not the physical line number of the source file. Peppering one's code with line numbers at critical points is helpful at troubleshooting the unexpected exceptions, and one doesn't need the source file and PDB to make Erl work. |
|||
|
|