Disable Browser Link – which toolbar

http://blogs.msdn.com/b/webdev/archive/2013/06/28/browser-link-feature-in-visual-studio-preview-2013.aspx

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:

What Browser Link looks like in 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.

Leave a Comment