mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-21 19:34:40 +08:00
31 lines
1.4 KiB
XML
31 lines
1.4 KiB
XML
<?xml version="1.0"?>
|
|
<configuration>
|
|
<appSettings>
|
|
<add key="webpages:Enabled" value="false" />
|
|
</appSettings>
|
|
<system.web>
|
|
<!--
|
|
Enabling request validation in view pages would cause validation to occur
|
|
after the input has already been processed by the controller. By default
|
|
MVC performs request validation before a controller processes the input.
|
|
To change this behavior apply the ValidateInputAttribute to a
|
|
controller or action.
|
|
-->
|
|
<pages
|
|
validateRequest="false"
|
|
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
|
|
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
|
|
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
|
<controls>
|
|
<add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" namespace="System.Web.Mvc" tagPrefix="mvc" />
|
|
</controls>
|
|
</pages>
|
|
</system.web>
|
|
|
|
<system.webServer>
|
|
<validation validateIntegratedModeConfiguration="false"/>
|
|
<handlers>
|
|
</handlers>
|
|
</system.webServer>
|
|
</configuration>
|