29 lines
690 B
Plaintext
29 lines
690 B
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<!--
|
||
|
有关如何配置 ASP.NET 应用程序的详细信息,请访问
|
||
|
http://go.microsoft.com/fwlink/?LinkId=169433
|
||
|
-->
|
||
|
|
||
|
<configuration>
|
||
|
<connectionStrings></connectionStrings>
|
||
|
|
||
|
<system.web>
|
||
|
<compilation debug="true" targetFramework="4.0" />
|
||
|
<authentication mode="Forms">
|
||
|
<forms loginUrl="~/Account/Login" timeout="2880" defaultUrl="~/" />
|
||
|
</authentication>
|
||
|
|
||
|
</system.web>
|
||
|
<system.webServer>
|
||
|
<modules runAllManagedModulesForAllRequests="true"/>
|
||
|
</system.webServer>
|
||
|
|
||
|
|
||
|
<runtime>
|
||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||
|
</assemblyBinding>
|
||
|
</runtime>
|
||
|
|
||
|
</configuration>
|