As useful as it can be, sometimes you just need to turn Browser Link off. There are two ways to do this in your Web.config file:

  • Add the vs:EnableBrowserLink to your <appSettings> and set it’s value to false:
<appSettings>
	<add key="vs:EnableBrowserLink" value="false" />
</appSettings>
  • Set the value of debug in the <compilation> tag to false:
<system.web>
	<compilation debug="false" targetFramework="4.5" />
</system.web>