I want to disable visual studios browser link. I found this question: How can I disable __vwd/js/artery in VS.NET 2013? and many other resources saying I should untick "Enable Browser Link" in the toolbar, but that toolbar doesn't show up in my visual studio. I've enabled all the debug toolbars but still no browser link button.
This should explain how to turn off browser link. You could do it via web.config:
<appSettings>
<add key="vs:EnableBrowserLink" value="false"></add>
</appSettings>
or do it from the toolbar:
If that button isn't available, go to VIEW > Toolbars > Standard and make sure it's checked. Keep in mind it's only available in VS2013 and later.