How to access stack frame information while debugging ASP.net program?
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 of
Debug / Windows / Call Stack
Alternatively, 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 the Page
directive at the top of the specific page
For example:
<%@ Page Trace="true" Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %>
or you can achieve ASP.NET tracing application-wide, by adding the
directive to the
section of the web.config
file. I.e.