Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Debugger: does it have a call stack window?
Message
 
 
To
06/05/2005 08:08:06
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
C# 1.1
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01011559
Message ID:
01011568
Views:
12
>I like the Debugger. Powerful and easy to use.
>
>Is there a "call stack" window (as in VFP's debugger)? I'd like to see where the call to the current line came from.

You can set Trace on.

In Page directive for page-level tracing by doing something like:
<%@ Page Language="c#" .... Trace="true" %>
For application-level tracing set "true" in web.config.

Then, if the application=level tracing is enabled, you can view trace viewer called trace.axd. For example,
http://localhost/MyApp/trace.axd
The above will show you the summary of entries in the trace log. Then you can expand it by clicking in View Details link.

HTH.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform