Can I know what was the last step in visual studio 2003 debugging?

mich

I have to fix asp.net application in visual studio 2003, Is there a way to see the previous step before the breakpoint? Thanks!

David

There are a finite number of places where the function can be called. And since .NET is statically typed, the compiler knows all of them. Visual Studio 2003 is ancient so I'm not 100% familiar with the debugger's capabilities, but there are some things you can try:

  • The debugger might have a "call stack" that shows where the call to the function was made. This would allow you to find the calling code and place a breakpoint there.
  • Throwing an exception as a temporary debugging measure will also give you a stack trace to show you what code is calling the function, so you can find it and place a breakpoint there.
  • If you right-click on the function name, is there an option to "find all references"? That would tell you all of the locations in the code which call that function.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Can't step over code in Visual studio while debugging

From Dev

Is there Visual Studio 2015 Debugging step skipping?

From Dev

Can I get reverse debugging functionality for Visual Studio 2013 Professional?

From Dev

Can I open an installed application in visual studio for debugging?

From Dev

Can I step back to previous breakpoint while debugging in Android Studio? (Drop the frames)

From Dev

How can I use the mail merge step by step wizard in Visual Studio?

From Dev

The process or thread has changed since last step (Visual Studio)

From Dev

How can I edit my code while debugging using Visual Studio?

From Dev

How can I start a new Chrome instance in Visual Studio on website startup without Javascript Debugging?

From Dev

Debugging with Visual C++ Toolkit 2003 and CodeBlocks

From Dev

When debugging I can step into my NuGet package

From Dev

How can I know the value of a variable in bison while debugging with GDB?

From Java

How can I prevent Visual Studio 2013 from closing my IIS Express app when I end debugging?

From Dev

Dynamic debugging with visual studio

From Dev

Visual Studio debugging WebApi

From Dev

Visual Studio debugging WebApi

From Dev

Dynamic debugging with visual studio

From Dev

Debugging Visual Studio

From Dev

Debugging C# MVC3 in visual studio : can i stop session data from clearing each time i re-start debugging?

From Java

Visual Studio Code - Python debugging - Step into the code of external functions when executing

From Dev

Visual Studio Code - Python debugging - Step into the code of external functions when executing

From Dev

Prevent automatic "step into" inside .min.js files in visual studio, while debugging

From Dev

Visual Studio 2015 Debugging: Can't expand local variables?

From Dev

Why can't I use filter as my last step in a stream

From Dev

How can I retrieve the features of the last step in backward regression in R

From Dev

How do I use visual studio debugging shortcuts on a Mac?

From Dev

I'm getting strange error during debugging in Visual Studio

From Dev

How can I know what event is happening?

From Dev

remove method "outlining" (dont know what to call it) in Visual Studio 2013

Related Related

  1. 1

    Can't step over code in Visual studio while debugging

  2. 2

    Is there Visual Studio 2015 Debugging step skipping?

  3. 3

    Can I get reverse debugging functionality for Visual Studio 2013 Professional?

  4. 4

    Can I open an installed application in visual studio for debugging?

  5. 5

    Can I step back to previous breakpoint while debugging in Android Studio? (Drop the frames)

  6. 6

    How can I use the mail merge step by step wizard in Visual Studio?

  7. 7

    The process or thread has changed since last step (Visual Studio)

  8. 8

    How can I edit my code while debugging using Visual Studio?

  9. 9

    How can I start a new Chrome instance in Visual Studio on website startup without Javascript Debugging?

  10. 10

    Debugging with Visual C++ Toolkit 2003 and CodeBlocks

  11. 11

    When debugging I can step into my NuGet package

  12. 12

    How can I know the value of a variable in bison while debugging with GDB?

  13. 13

    How can I prevent Visual Studio 2013 from closing my IIS Express app when I end debugging?

  14. 14

    Dynamic debugging with visual studio

  15. 15

    Visual Studio debugging WebApi

  16. 16

    Visual Studio debugging WebApi

  17. 17

    Dynamic debugging with visual studio

  18. 18

    Debugging Visual Studio

  19. 19

    Debugging C# MVC3 in visual studio : can i stop session data from clearing each time i re-start debugging?

  20. 20

    Visual Studio Code - Python debugging - Step into the code of external functions when executing

  21. 21

    Visual Studio Code - Python debugging - Step into the code of external functions when executing

  22. 22

    Prevent automatic "step into" inside .min.js files in visual studio, while debugging

  23. 23

    Visual Studio 2015 Debugging: Can't expand local variables?

  24. 24

    Why can't I use filter as my last step in a stream

  25. 25

    How can I retrieve the features of the last step in backward regression in R

  26. 26

    How do I use visual studio debugging shortcuts on a Mac?

  27. 27

    I'm getting strange error during debugging in Visual Studio

  28. 28

    How can I know what event is happening?

  29. 29

    remove method "outlining" (dont know what to call it) in Visual Studio 2013

HotTag

Archive