I like the inspector function in Visual Studio 2013 Browser Link. However, I have a small number of pages, mostly custom audio / video Media Player, that force the browser to make an excessive number of signalr requests per second ... in the range of 200 per second. Therefore, I would like to disable the function on these specific pages.
I know that it can be disabled throughout the application or application section by placing the following key in the web.config file.
<add key="vs:EnableBrowserLink" value="true" />
Is there a way to disable it on one page?
source share