Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Rated
Read 35,875 times

Contents

Related Categories

High-Performance .NET Application Development & Architecture - Debugging

DMarko1

Debugging

Debugging is the art of program flow error handling, where you track down errors that has prevented your code from fully executing. .NET has much improved the classic ASP way of Response.Writing to find and trap program errors and flow. To employ debugging you could do this:

  1. Application wide in your web.config file:

    <system.web>

    <compilation debug="true"/>

    </system.web>


  2. Or locally and easier is by setting Debug to true in your page's @ Page Directive and also your user-control's @ Control Directive

Dimitrios, or Jimmy as his friends call him, is a .NET developer/architect who specializes in Microsoft Technologies for creating high-performance and scalable data-driven enterprise Web and desktop applications. Till now Jimmy has authored nearly two dozen .NET articles, published on Dot Net Junkies, 4 Guys From Rolla, Sitepoint, MSDN Academic Alliance, Developers.NET, The Official Microsoft ASP.NET Site, and here on Developer Fusion, covering various unique and advanced techniques on .NET.

Comments