| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?xml version="1.0"?>
- <configuration>
- <!-- appSettings网站信息配置-->
- <appSettings>
- <!--<add key="Configpath" value="~/xmlconfig/site.config"/>
- <add key="DESKey" value="123456789"/>
- <add key="SheetSize" value="10000"/>
- <add key="DayendTime" value="18:45:00"/>-->
- <add key="DESKey" value="123456789"/>
- <add key="Datetime" value="2015/03/01 00:00:00"/>
- </appSettings>
- <!-- 数据库连接字符串-->
- <connectionStrings>
- <!--<add name="ConnectionString" connectionString="Data Source=192.168.172.50;Initial Catalog=XKP_CallCenter;User ID=sa;Password=Xinkaipu@123"/>-->
- <add name="ConnectionString" connectionString="Data Source=192.168.1.88;User ID=sa;pwd=800100;Initial Catalog=Base_CallCenter_XiAn;"/>
- </connectionStrings>
- <system.web>
- <httpHandlers>
- <add path="ajaxpro/*.ashx" verb="POST,GET" type="AjaxPro.AjaxHandlerFactory, AjaxPro.2"/>
- <add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false"/>
- </httpHandlers>
- <compilation debug="true" targetFramework="4.0">
- </compilation>
- <!--
- 通过 <authentication> 节可以配置
- 安全身份验证模式,ASP.NET
- 使用该模式来识别来访用户身份。
- -->
- <authentication mode="Windows"/>
- <!--
- 如果在执行请求的过程中出现未处理的错误,
- 则通过 <customErrors> 节
- 可以配置相应的处理步骤。具体而言,
- 开发人员通过该节可配置要显示的 html 错误页,
- 以代替错误堆栈跟踪。
- <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
- <error statusCode="403" redirect="NoAccess.htm" />
- <error statusCode="404" redirect="FileNotFound.htm" />
- </customErrors>
- -->
- <httpModules>
- </httpModules>
- <!-- 文件上传大小KB-->
- <httpRuntime maxRequestLength="204800" executionTimeout="3600" requestValidationMode="2.0"/>
- <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID" validateRequest="false">
- <controls>
- <!-- aspnetpager分页控件 -->
- <add assembly="AspNetPager" namespace="Wuqi.Webdiyer" tagPrefix="webdiyer" />
- </controls>
- </pages>
- </system.web>
- </configuration>
|