Перейдите в C: \ Documents and Settings \ $ ваше имя пользователя $ \ My Documents \ IISExpress \ config
Откройте applicationHost.config
Найдите раздел <system.webServer>
Измените раздел <asp>
на следующий… По умолчанию в нем только кэш и пустые биты пределов, но вы можете свободно изменять любые параметры, которые вам не нужны.
<asp
enableParentPaths="true"
bufferingOn="true"
errorsToNTLog="true"
appAllowDebugging="true"
appAllowClientDebug="true"
scriptErrorSentToBrowser="true">
<session allowSessionState="true" />
<cache diskTemplateCacheDirectory="%TEMP%\iisexpress\ASP Compiled Templates" />
<limits />
</asp>
Сохранение и перезапуск iis express.