Я открыл существующий проект веб-приложений из Visual Studio 2013 (который работает отлично), в Visual Studio 2015. Когда я запускаю его из Visual Studio 2015, я получаю:
Active Server Pages error 'ASP 0131'
Disallowed Parent Path
/blah/login.asp, line 1
The Include file '../includes/Security.asp' cannot contain '..' to indicate the parent directory.
В файле IISExpress applicationhost.config уже содержится запись:
<asp appAllowClientDebug="false" appAllowDebugging="false" errorsToNTLog="false" enableParentPaths="true" scriptErrorSentToBrowser="true" bufferingOn="true">
<session allowSessionState="true" />
<cache diskTemplateCacheDirectory="%SystemDrive%\inetpub\temp\ASP Compiled Templates" />
<limits maxRequestEntityAllowed="1073741824" />
</asp>
Мои свойства веб-приложения настроены на использование IISExpress.
Что я могу потерять?