Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Debugger: does it have a call stack window?
Message
 
 
À
06/05/2005 08:08:06
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Versions des environnements
Environment:
C# 1.1
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
MS SQL Server
Divers
Thread ID:
01011559
Message ID:
01011568
Vues:
13
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform