Wednesday 23 November 2011

Debugging in ASP.NET


Debugging is the most essential second-last step in a standard Software Development Life Cycle (SDLC). The last step of course being the final product release!

Normally, as laymen we think of debugging as a simple process of finding the errors and go on solving it, until we get none. But, actually from ASP.NET developer’s point of view, debugging is more than that – its about running your code line by line to ensure that the execution path and the data are both correct and as per the requirement of the software or the website. The Visual Studio.Net provides debugging tools like:

a.       Integrated debugger; it comes as an internal part of the Visual Studio software itself. So, the ASP.NET programmer does not need to install it separately.
b.      Visual debugger; this is a separate tool and comes as a part of the Microsoft Software Development Kit (SDK). This is basically used to debug some complex bugs that one cannot fix using the integrated debugger.


At SPEC India, we have a dedicated team of QA guys, who test our every software and website or product that we develop. We are following all the genuine standards with an ISO 9001:2008 certification and testing or debugging is always a core part of any SDLC, to ensure the quality of the product.

No comments:

Post a Comment