How can we use traceing in our web page in asp.net
How can we use tracing in our web page or web application in asp.net ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Jun 16, 2012, 7:12 AM
ASP.NET tracing enables you to view diagnostic information about a single request for an ASP.NET page. ASP.NET tracing enables you to follow a page's execution path, display diagnostic information at run time, and debug your application. ASP.NET tracing can be integrated with system-level tracing to provide multiple levels of tracing output in distributed and multi-tier applications.
Please refer the below links
http://msdn.microsoft.com/en-us/library/bb386420.aspx
http://www.codeproject.com/Articles/10210/Tracing-web-application-with-ASP-NET
http://www.beansoftware.com/ASP.NET-Tutorials/Tracing-ASP.NET.aspx
Thanks