Wayne Bloss
Wayne Bloss

Reputation: 5550

Cannot disable Javascript Debugging in Visual Studio 2013?

I am building an ASP.NET Web Forms application (not site) and whenever I debug with Internet Explorer, I cannot seem to disable the integrated Javascript debugging with Visual Studio 2013 Pro.

How do I get it to stop breaking on Javascript exceptions?

My OS is Windows 2012 Server R2 (so, equivalent to Windows 8.1 Pro) with IE11. I have tried every setting that I could find but nothing has worked so far. I have even logged out and back in. I am going to try a complete reboot right now.

The screenshots below show all the settings I've tried.

Exception and Settings:

Exception Occurrence and Settings


Visual Studio Options - Debugging:

Visual Studio Debugging Options


Internet Explorer Options:

Internet Explorer Options


BrowserLink Disabled

BrowserLink Options


Upvotes: 15

Views: 6844

Answers (2)

Wayne Bloss
Wayne Bloss

Reputation: 5550

If you run your web project with IE, VS will automatically attach to the IE process and debug it and there is no way to disable that.

So, start debugging with Chrome or Firefox if you don't want VS to debug IE automatically when you run your project. Then open up IE and navigate to your site if you still need to test with IE.

Upvotes: 8

MAD
MAD

Reputation: 41

There is no user-unhandled column on yours Exceptions window, if its hide make it appear and uncheck all check marks. See: enter image description here

Upvotes: 1

Related Questions