How can I disable __vwd/js/artery in VS.NET 2013?

前端 未结 2 431
时光说笑
时光说笑 2020-12-12 12:39

I\'ve upgraded to VS.NET 2013, and now, every time I start to debug an ASP.NET MVC4 app in IIS, some how __vwd/js/artery is created, this script is interfering with my Requ

相关标签:
2条回答
  • 2020-12-12 13:00

    A friend of mine found it, it's Enable Browser Link enter image description here

    0 讨论(0)
  • 2020-12-12 13:07

    I found that it was still running until I actually added a value for it in the Web.config appSettings to turn it off.

    <add key="vs:EnableBrowserLink" value="false" />
    
    0 讨论(0)
提交回复
热议问题