Debugging ASP.NET Web Applications
Debugging ASP.NET Web applications is similar to debugging a Windows Form or any other Windows application because both kinds of applications involve controls and events. However, there are also basic differences between the two kinds of applications:
-
Keeping track of state is more complex in a Web application.
-
In a Windows application, the code to be debugged is mostly in one place; in a Web application, the code can be on the client and on the server. While ASP.NET code is all on the server, there may also be JavaScript or Visual Basic code on the client.
In This Section
- Getting Ready to Debug ASP.NET Applications
-
Describes the steps required to enable debugging of ASP.NET applications.
- Debugging ASP.NET Web Forms and XML Web Services
-
Discusses debugging a Web application that is already deployed and running on a server. Information includes considerations and steps for debugging.
Related Sections
See Also
Concepts
Debugger SecurityOther Resources
Debugging in Visual StudioDebug Settings and Preparation
Debugger Roadmap