How to access stack frame information while debugging ASP.net program?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re referring the “Call Stack” window, you can view that when debugging by opening the Call Stack Window using either it’s default hotkey of
CTRL+ALT+C, or by using the IDE menu ofDebug / Windows / Call StackAlternatively, if you’re referring to ASP.NET’s built-in Tracing capability, whereby the ASP.NET runtime will display diagnostic information about a single request for an ASP.NET page, you can achieve this on a per page basis by adding
Trace="true"to thePagedirective at the top of the specific pageFor example:
or you can achieve ASP.NET tracing application-wide, by adding the
<trace>directive to the<system.web>section of theweb.configfile. I.e.