Tag Archives: Debugging

Change the Default Browser In Visual Studio

To change the default browser Visual Studio opens when running a web application simply follow the below 3 steps: Right-Click on any webform ( such as default.aspx ). Select “Browse With…” In the dialog box you will be shown the currently installed browsers. Highlight the browser you wish to use and click the Set as [...]

Read more

Debug a Stored Procedure in Visual Studio

To debug a stored procedure (sproc) in Visual Studio follow the below steps Start Visual Studio and then create a new SQL Server project (File > New > Project > Database Projects) In the dialog box, select the database (in this example the NORTHWIND database) and click Yes to create the project. Add a  new [...]

Read more

Disable JavaScript Debugging in Visual Studio

There are three methods for turning off Javascript debugging in Visual Studio (which is enabled by default). Method 1 Start the application without debugging it (press Ctrl + F5) Attach the Visual Studio Debugger to WebDev.WebServer.exe process Method 2 Right click the app to debug and select Properties Hit the Web tab on the left [...]

Read more

Remote Debugging using Visual Studio

To use Visual Studio remote debugging both the remote machine and the local machine need to be in the same domain. Ensure that you are using the same account / password on both machines and that both have Administrator privileges. Then follow the below steps to implement remote debugging: Log on the remote machine  with [...]

Read more

Visual Studio Debugging Tutorial – Basics

If there’s a single feature of Visual Studio that every developer uses and is essential to the development process it is the built-in debugger. Debugging can be commenced by clicking the green arrow button in the VS toolbar, selecting Debug-Strart Debugging from the menu, or hitting F5. Before commencing debugging you will need to select [...]

Read more