| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- For more information on how to configure your ASP.NET application, please visit
- http://go.microsoft.com/fwlink/?LinkId=301880
- -->
- <configuration>
- <appSettings>
- <add key="webpages:Version" value="3.0.0.0"/>
- <add key="webpages:Enabled" value="false"/>
- <add key="ClientValidationEnabled" value="true"/>
- <add key="UnobtrusiveJavaScriptEnabled" value="true"/>
- <add key="DESKey" value="123456789"/>
- <!--中鑫之宝短信配置-->
- <add key="smsurl" value="http://api.1086sms.com/api/"/>
- <add key="smsusername" value="zxzb"/>
- <add key="smspassword" value="zxzb123"/>
- <add key="smssign" value="中鑫之宝"/>
- </appSettings>
- <connectionStrings>
- <add name="ConnectionString" connectionString="Data Source=192.168.4.18;User ID=sa;pwd=800100;Initial Catalog=CityPlatform;"/>
- </connectionStrings>
- <system.web>
- <compilation debug="true" targetFramework="4.5"/>
- <httpRuntime targetFramework="4.5" maxRequestLength="20971520" executionTimeout="3600"/>
- <authentication>
- <forms name=".MyCookie" cookieless="UseCookies" loginUrl="/Login/login" protection="All" timeout="60"/>
- </authentication>
-
- </system.web>
- <runtime>
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
- <dependentAssembly>
- <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
- <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
- </dependentAssembly>
- <dependentAssembly>
- <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
- <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
- </dependentAssembly>
- <dependentAssembly>
- <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
- <bindingRedirect oldVersion="1.0.0.0-5.2.6.0" newVersion="5.2.6.0"/>
- </dependentAssembly>
- </assemblyBinding>
- </runtime>
- <system.webServer>
- <staticContent>
- <mimeMap fileExtension=".apk" mimeType="application/vnd.android.package-archive"/>
- </staticContent>
- <!--cors 支持跨域 clq新增 strat-->
- <httpProtocol>
- <customHeaders>
- <add name="Access-Control-Allow-Origin" value="*"/>
- <add name="Access-Control-Allow-Headers" value="Content-Type"/>
- <add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS"/>
- </customHeaders>
- </httpProtocol>
- <!--cors 支持跨域 end-->
- <validation validateIntegratedModeConfiguration="false"/>
- </system.webServer>
- </configuration>
|