Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 5 down vote accepted

You can do this:

var line = new StackFrame(0, true).GetFileLineNumber();

Note there are several caveats to this.

  1. You will need to make sure the source file and PDB are reachable.
  2. This will get you the current line of the method you are in, not exactly where you are.
  3. The Jit may perform optimizations that result in incorrect information, such as a method being inlined.

For VB.NET it's the same thing:

Dim line As Integer = New StackFrame(0, True).GetFileLineNumber()

As far as Classic ASP goes - I don't believe this is possible.

share|improve this answer
Do you have code that can do this in asp? – RetroCoder Oct 20 '11 at 0:18
@RetroCoder I don't believe that is possible. – vcsjones Oct 20 '11 at 0:24

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.