PageRenderTime 41ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/Views/Web.config

#
Unknown | 41 lines | 39 code | 2 blank | 0 comment | 0 complexity | 779fad978498e650a9aa139cf62fb86c MD5 | raw file
  1. <?xml version="1.0"?>
  2. <configuration>
  3. <appSettings>
  4. <add key="webpages:Enabled" value="false" />
  5. </appSettings>
  6. <system.web>
  7. <httpHandlers>
  8. </httpHandlers>
  9. <!--
  10. Enabling request validation in view pages would cause validation to occur
  11. after the input has already been processed by the controller. By default
  12. MVC performs request validation before a controller processes the input.
  13. To change this behavior apply the ValidateInputAttribute to a
  14. controller or action.
  15. -->
  16. <pages
  17. validateRequest="false"
  18. pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  19. pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  20. userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  21. <controls>
  22. <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" namespace="System.Web.Mvc" tagPrefix="mvc" />
  23. </controls>
  24. </pages>
  25. </system.web>
  26. <system.webServer>
  27. <validation validateIntegratedModeConfiguration="false"/>
  28. <handlers>
  29. </handlers>
  30. </system.webServer>
  31. <runtime>
  32. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  33. <dependentAssembly>
  34. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  35. <bindingRedirect oldVersion="2.0.0.0" newVersion="3.0.0.0" />
  36. </dependentAssembly>
  37. </assemblyBinding>
  38. </runtime>
  39. </configuration>