.NET news » Debug Debug Rss Feed

Mastering in Visual Studio 2010 Debugging- A Beginner's Guide

Describes about all debugging features like Breakpoints, DataTips, Watch Windows, Multithreaded Debugging, Parallel Program Debugging and IntelliTrace Debugging
6 May 2010, 11:38:00   Source: Mastering in Visual Studio 2010 Debugging- A Beginner's...   Tags: Debug

Dumping .NET classes to debug output

Class to convert .NET classes into readable debug output with less effort
22 Apr 2010, 14:57:00   Source: Dumping .NET classes to debug output   Tags: Debug

Troubleshooting Website Problems by Examining the HTTP Traffic

Unlike debugging server-side code, examining the HTTP traffic sent between the client and the server is typically done on the client - namely, from the browser rather than from within Visual Studio. Fiddler is a free, excellent tool for debugging HTTP traffic. This article provides an overview of Fiddler and shows how to use Fiddler to assist with debugging.

11 Nov 2008, 18:00:00   Source: Troubleshooting Website Problems by Examining the HTTP...   Tags: ASP.NET Debug

TraceTool 10.1: The Swiss-Army Knife of Trace

A C#, C++, Delphi, ActiveX and Java trace framework and a trace viewer: Tail, outputDebugString, event log, and with Log4J, Log4Net, and Microsoft Enterprise Instrumentation Framework (EIF) support. This also comes with full support for Pocket PC development (C++ and .NET).
16 May 2008, 10:38:00   Source: TraceTool 10.1: The Swiss-Army Knife of Trace   Tags: Debug Software

Exploring Secrets of .NET Diagnostics

Instrumenting an application with tracing has become increasingly sophisticated as the .NET framework has matured. Find out how to use tracing in your applications, how to fine-tune tracing to your needs with custom listeners, and how to gain field-level and robust formatting control over the output.
14 Mar 2008, 23:55:33   Source: Exploring Secrets of .NET Diagnostics   Tags: Debug

Debugging Memory Related Issues in .Net Application Using WinDBG and SOS

Visual studio inbuilt debugger is a well known debugger, which offers both managed and mixed debugging options but at times when we need to debug memory related issues such as to optimize application performance, solve crashes or out of memory exceptions, then we really need to have a more powerful debugger, that can give detailed insight of objects on heap and GC...
12 Feb 2008, 13:33:00   Source: Debugging Memory Related Issues in .Net Application Using...   Tags: Debug

Authoring Visual Studio Debugger Visualizers

Visual Studio Debugger Visualizers are a great addition to the developers debugging toolbox. Their purpose is to provide a custom view of data during a debugging session. This article will cover developing a simple string visualizer that allows the string to be replaced during the visualizer session. Additionally, necessary steps to debug your visualizer will be covered.
22 Jan 2008, 06:28:00   Source: Authoring Visual Studio Debugger Visualizers   Tags: Visual Studio Addins Debug

Debugging SQL Server 2005 Stored Procedures in Visual Studio

With Microsoft SQL Server 2000 it was possible to debug stored procedures from directly within Query Analyzer (see Debugging a SQL Stored Procedure from inside SQL Server 2000 Query Analyzer for more information). With SQL Server 2005, however, this functionality was moved out of SQL Server Management Studio and into the Visual Studio IDE. Using this technique, it is possible to step into your stored procedures, one statement at a time, from within Visual Studio. It is also possible to set breakpoints within your stored procedures' statements and have these breakpoints hit when debugging your application.

All editions of SQL Server 2005 include debugging support (including the Express Edition). However, only the Team Systems and Professional editions of Visual Studio enable stored procedure debugging from within the IDE. In short, if you are using Visual Web Developer or Visual Studio Standard Edition then you cannot step through a stored procedure or enter the stored procedure via application debugging.

In this article we will examine how to debug SQL Server 2005 stored procedures through the Visual Studio IDE. We will look at both stepping into a stored procedure directly from the IDE as well as how to set breakpoints within the stored procedure that are then hit when debugging the application.

Debuging with breakpoints in ASP.NET

Explains how to debug ASP.NET application by using breakpoint's advantages.
2 Oct 2006, 10:58:47   Source: Debuging with breakpoints in ASP.NET   Tags: Debug

Production Exception Logging for Dummies 101 (Updated)

Provides an easy-to-use "drop it in" Exception logging framework for ASP.NET 1.1 and 2.0 applications. Log to a database, receive an email with a description and a link to the reporting page with the exact exception, and even optional Syslog reporting. Complete article with source code downloads. Uses the new "Data" field in the .NET 2.0 Exception class.
4 Sep 2006, 07:04:20   Source: Production Exception Logging for Dummies 101 (Updated)   Tags: ASP.NET Debug