Why does this web.config only work on iis windows 7 but not work at iis express build in visual studio ultimate 2013 or azure website.Are these limitation rewrite bound or any limitation or new future are been done ?
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<sessionState mode="InProc" cookieless="false" timeout="20" />
<compilation debug="true" />
</system.web>
<appSettings>
<add key="vs:EnableBrowserLink" value="false" />
</appSettings>
<connectionStrings>
<add name="ApplicationServices"
connectionString="Server=#######"
providerName="Sys ...
Go to the complete details ...