Hi!
I was trying to put web.config in Debug mode by setting the following line to true:
<compilation debug="false" numRecompilesBeforeAppRestart="100">
Now I keep getting this compilation error:
Server Error in '/' Application.
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.
Source Error:
Line 53: <error statusCode="404" redirect="~/CMSPages/handler404.aspx" />
Line 54: </customErrors>
Line 55: <authentication mode="Forms">
Line 56: <forms loginUrl="CMSPages/logon.aspx" defaultUrl="Default.aspx" name=".ASPXFORMSAUTH" timeout="60000" slidingExpiration="true" />
Line 57: </authentication>
Please help!
-Eric