Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>After a long digging around I noticed that VS2013 come with a new addition; SignalR - which as it turns out is associated with the ArteryFilter problem.</p> <p>So, in order to solve this problem, <strong>uncheck the "Enable Browser Link" feature next to your Debug button</strong> and voila; filters works as expected again. Still weird that VS2013 does not chain filters.</p> <p><img src="https://i.stack.imgur.com/vRG7Q.jpg" alt="Uncheck the &quot;Enable Browser Link&quot;"></p> <p><strong>Also, note that this is a general ASP.NET feature and hence not limited to MVC.</strong></p> <p>PRESERVED FOR HISTORY - ANSWER IS ABOVE</p> <p>I am experiencing the same thing but so far it seems related to the new IISExpress and not VS2013 perse. What worked fine in VS2012 suffers the same fate as the one introduced by installing VS2013.</p> <p>When executed through normal IIS the problem disappears, hence your code is working fine. Let me know if you find a way to disable this {Microsoft.VisualStudio.Web.PageInspector.Runtime.Tracing.ArteryFilter}.</p> <p>Further investigation shows that the <strong>applicationhost.config</strong> (typically located in %USERPROFILE%\documents\IISexpress\config) indeed is changed by VS2013. I have a backup renamed to ApplicationHost.config.20120825120333.bak. The solution to this mystery is somehow hidden within this configuration change.</p> <p>A direct restore of the config make IISExpress unable to start from VS2013.</p> <p>ONE NOT-SO-GOOD SOLUTION:</p> <p>You can turn debug off (equivalent to CTRL+F5), and IISExpress will act and work as expected. Enabling debug will once again introduce the feature that this entry is about.</p> <pre><code> &lt;system.web&gt; &lt;compilation targetFramework="4.5" debug="false"/&gt; &lt;httpRuntime targetFramework="4.5"/&gt; &lt;/system.web&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload