This is a discussion on debugging an Asp.net web application within the Software Testing forums, part of the Software Quality Assurance category; Hi All, Can anybody explain how to debug an ASP.NET web Appplication. Sabita...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Bugs are a fact of the programmer's life. Debugging an ASP.NET Web Application Two main areas of finding and fixing errors in your program - Tracing and Debugging. 1. Tracing: the process of collecting information about a program’s execution and 2. Debugging: the overlapping topic of finding and fixing errors in your program We shall look both at the inherent supporting features provided by the .NET framework and ASP.NET and the additional tools provided by VS.NET over the course of the two articles. Tracing Tracing is the ability of an application to generate information about its own execution. The idea is that subsequent analysis of this information may help us understand why a part of the application is not behaving as it should and allow identification of the source of the error. We shall look at two different ways of implementing tracing in .NET 1. via the System.Web.TraceContext class 2. via the System.Diagnostics.Trace and System.Diagnostics.Debug classes Tracing can be thought of as a better (more featureful and automated) alternative to the response.writes you used to put in your old ASP3.0 code to help debug pages!
__________________ Venkat knowledge is Power Last edited by Booom : 08-18-2007 at 01:04 AM. |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| What debugging tools come with the .NET SDK? | anbuchezhians | VB.NET Programming | 1 | 11-03-2007 04:00 AM |
| debugging ASP .NET vs PHP | vivekanandan | PHP Programming | 1 | 08-11-2007 05:18 AM |
| variable while debugging a C# application | vigneshgets | C# Programming | 1 | 08-01-2007 05:00 AM |
| Expalin the art of debugging? | devarajan.v | Software Testing | 1 | 07-17-2007 05:32 AM |
| Techniques in debugging | prasath | C and C++ Programming | 0 | 07-17-2007 05:31 AM |