Web.config 595 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. 有关如何配置 ASP.NET 应用程序的详细信息,请访问
  4. http://go.microsoft.com/fwlink/?LinkId=169433
  5. -->
  6. <configuration>
  7. <system.web>
  8. <pages validateRequest="false" ></pages >
  9. <compilation debug="true" targetFramework="4.0" />
  10. <httpRuntime maxRequestLength="1024000" requestValidationMode="2.0" />
  11. </system.web>
  12. <system.webServer>
  13. <defaultDocument>
  14. <files>
  15. <add value="Login.aspx" />
  16. </files>
  17. </defaultDocument>
  18. </system.webServer>
  19. </configuration>