Reputation: 5920
When we use Visual Studio 2013 for web development, we experience the following issues while debugging:
Changing to a local IIS does not solve these problems.
What's going on here?
Upvotes: 2
Views: 1349
Reputation: 915
For me, this was happening because I use Resharper and have a big file oppened (30k lines). I just disable resharper for some specific files.
Upvotes: 0
Reputation: 5920
According to this site https://www.devexpress.com/Support/Center/Question/Details/T102322
In Microsoft Visual Studio 2013, the Browser Link feature was introduced. It provides dynamic exchange between IDE and any open browser on your machine. With the help of this feature, you can test changes in page markup in browsers on the fly, inspect HTML objects, etc. However, the use of this feature might cause abovementioned problems in the debugging process.
A common solution is to disable Browser Link in Visual Studio:
Upvotes: 5