1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- 有关如何配置 ASP.NET 应用程序的详细信息,请访问
- http://go.microsoft.com/fwlink/?LinkId=169433
- -->
- <configuration>
- <system.web>
- <pages validateRequest="false" ></pages >
-
- <compilation debug="true" targetFramework="4.0" />
- <httpRuntime maxRequestLength="1024000" requestValidationMode="2.0" />
- </system.web>
- <system.webServer>
- <defaultDocument>
- <files>
- <add value="Login.aspx" />
- </files>
- </defaultDocument>
- </system.webServer>
- </configuration>
|