2024-06-24 10:28:40 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-05-14 16:17:33 +08:00
|
|
|
|
<!--
|
|
|
|
|
有关如何配置 ASP.NET 应用程序的详细消息,请访问
|
|
|
|
|
|
|
|
|
|
http://go.microsoft.com/fwlink/?LinkId=169433
|
|
|
|
|
-->
|
|
|
|
|
<configuration>
|
|
|
|
|
<configSections>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<section name="FineUIPro" type="FineUIPro.ConfigSection, FineUIPro" requirePermission="false" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</configSections>
|
|
|
|
|
<connectionStrings>
|
2024-09-29 15:48:12 +08:00
|
|
|
|
<add name="EProjectDBConnectionString" connectionString="Data Source=.\SQL2016;Initial Catalog=EProjectDB;uid=sa;pwd=1111;" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
<!--<add name="HJGLDBConnectionString" connectionString="Data Source=.;Initial Catalog=EProjectDB;Integrated Security=True"
|
|
|
|
|
providerName="System.Data.SqlClient" />-->
|
|
|
|
|
</connectionStrings>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<FineUIPro DebugMode="false" CustomTheme="Metro_Dark_Blue" EnableAnimation="true" JSLibrary="All" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
<appSettings>
|
|
|
|
|
<!--连接字符串-->
|
|
|
|
|
<!--<add key="ConnectionString" value="Server=.;Database=EProjectDB;Integrated Security=False; User ID=sa;Password=1111;MultipleActiveResultSets=true;Max Pool Size = 1000;Connect Timeout=1200"/>-->
|
|
|
|
|
<!--系统名称-->
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<add key="clientId" value="9fceb83b-fe0b-4374-8a94-6ee1ea46b2b6" />
|
|
|
|
|
<add key="clientSecret" value="7LI8Q~EfN~XB26vvDzLUaJlH8Uq.CG9p-JA5KbcY" />
|
|
|
|
|
<add key="redirect_url" value="https://eproject.basf-ypc.net.cn/ssocallback.aspx" />
|
|
|
|
|
<add key="SystemName" value="EProject" />
|
|
|
|
|
<add key="ChartImageHandler" value="storage=file;timeout=20;url=~/Images/;" />
|
|
|
|
|
<add key="aspnet:MaxHttpCollectionKeys" value="50000" />
|
|
|
|
|
<add key="Https" value="false" />
|
|
|
|
|
<add key="LdapUrl" value="10.4.21.240" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</appSettings>
|
|
|
|
|
<!--
|
|
|
|
|
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。
|
|
|
|
|
|
|
|
|
|
可在 <httpRuntime> 标记上设置以下特性。
|
|
|
|
|
<system.Web>
|
|
|
|
|
<httpRuntime targetFramework="4.6.1" />
|
|
|
|
|
</system.Web>
|
|
|
|
|
-->
|
|
|
|
|
<system.web>
|
|
|
|
|
<!-- 会话状态设置 默认情况下,ASP.NET 使用 Cookie 来标识哪些请求属于特定的会话。如果 Cookie 不可用,则可以通过将会话标识符添加到 URL 来跟踪会话。若要禁用 Cookie,请设置 sessionState cookieless="true" -->
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<sessionState mode="InProc" cookieless="UseCookies" timeout="1200" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
<!--<processModel enable="true" requestQueueLimit="100000"/>-->
|
|
|
|
|
<pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID" viewStateEncryptionMode="Always">
|
|
|
|
|
<controls>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<add tagPrefix="f" namespace="FineUIPro" assembly="FineUIPro" />
|
|
|
|
|
<add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting" assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</controls>
|
|
|
|
|
</pages>
|
|
|
|
|
<httpModules>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<add name="FineUIProScriptModule" type="FineUIPro.ScriptModule, FineUIPro" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</httpModules>
|
|
|
|
|
<httpHandlers>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<add path="res.axd" verb="GET" type="FineUIPro.ResourceHandler, FineUIPro" validate="false" />
|
|
|
|
|
<add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
|
|
|
|
|
<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91" validate="false" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</httpHandlers>
|
2024-09-29 15:48:12 +08:00
|
|
|
|
<compilation debug="false" targetFramework="4.8">
|
2024-05-14 16:17:33 +08:00
|
|
|
|
<assemblies>
|
|
|
|
|
<!--<add assembly="Microsoft.Build.Framework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
|
|
|
|
|
<add assembly="System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />-->
|
|
|
|
|
<!--<add assembly="Microsoft.ReportViewer.Common, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
|
|
|
|
|
<add assembly="Microsoft.ReportViewer.WebForms, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>-->
|
|
|
|
|
</assemblies>
|
|
|
|
|
<!--<buildProviders>
|
|
|
|
|
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
|
|
|
|
|
</buildProviders>-->
|
|
|
|
|
</compilation>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<httpRuntime requestValidationMode="2.0" maxRequestLength="2147483647" executionTimeout="36000" requestPathInvalidCharacters="" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
<authentication mode="Forms">
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<forms loginUrl="Login.aspx" name="PUBLISHERCOOKIE" protection="All" timeout="1440" path="/" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</authentication>
|
|
|
|
|
<membership>
|
|
|
|
|
<providers>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<clear />
|
|
|
|
|
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</providers>
|
|
|
|
|
</membership>
|
|
|
|
|
<profile>
|
|
|
|
|
<providers>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<clear />
|
|
|
|
|
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</providers>
|
|
|
|
|
</profile>
|
|
|
|
|
<roleManager enabled="false">
|
|
|
|
|
<providers>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<clear />
|
|
|
|
|
<add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
|
|
|
|
|
<add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</providers>
|
|
|
|
|
</roleManager>
|
|
|
|
|
<customErrors defaultRedirect="LogOff.aspx" mode="RemoteOnly">
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<error redirect="https://localhost/hjgl/OperationError.aspx" statusCode="404" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</customErrors>
|
|
|
|
|
<!--Unencrypted __VIEWSTATE parameter,viewstate 保存没有加密,解决方法-->
|
|
|
|
|
<!--<machineKey validation="3DES"/>-->
|
|
|
|
|
<!--Body Parameters Accepted in Query:https才能访问-->
|
|
|
|
|
<!--<httpCookies httpOnlyCookies="true" requireSSL="true"/>-->
|
|
|
|
|
</system.web>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<location path="res.axd" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
<system.webServer>
|
|
|
|
|
<staticContent>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<mimeMap fileExtension=".dat" mimeType="application/ChinaExcel Report File" />
|
|
|
|
|
<mimeMap fileExtension=".tab" mimeType="application/ChinaExcel Report File" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</staticContent>
|
|
|
|
|
<httpProtocol>
|
|
|
|
|
<customHeaders>
|
|
|
|
|
<!--<add name="Content-Security-Policy" value="default-src 'self'"/>-->
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<remove name="X-Powered-By" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
<!--SAMEORIGIN表示该页面可以在相同域名页面的 frame 中展示-->
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<add name="X-XSS-Protection" value="1;mode=block" />
|
|
|
|
|
<add name="X-Frame-Options" value="SAMEORIGIN" />
|
|
|
|
|
<add name="X-Content-Type-Options" value="nosniff" />
|
|
|
|
|
<add name="Strict-Transport-Security" value="max-age=31536000" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</customHeaders>
|
|
|
|
|
</httpProtocol>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<validation validateIntegratedModeConfiguration="false" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
<modules runAllManagedModulesForAllRequests="true">
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<add name="FineUIProScriptModule" type="FineUIPro.ScriptModule, FineUIPro" />
|
|
|
|
|
<remove name="ScriptModule" />
|
|
|
|
|
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</modules>
|
|
|
|
|
<handlers>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<remove name="ChartImageHandler" />
|
|
|
|
|
<add name="FineUIProResourceHandler" verb="GET" path="res.axd" type="FineUIPro.ResourceHandler, FineUIPro" />
|
|
|
|
|
<add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST" path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
|
|
|
|
|
<add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</handlers>
|
|
|
|
|
<defaultDocument>
|
|
|
|
|
<files>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<add value="Login.aspx" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</files>
|
|
|
|
|
</defaultDocument>
|
|
|
|
|
<httpErrors>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<remove statusCode="403" subStatusCode="-1" />
|
|
|
|
|
<error statusCode="403" prefixLanguageFilePath="https://localhost/Eproject/" path="OperationError.aspx" responseMode="File" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</httpErrors>
|
|
|
|
|
</system.webServer>
|
|
|
|
|
<runtime>
|
|
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
|
|
|
<dependentAssembly>
|
2024-06-24 10:28:40 +08:00
|
|
|
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
<dependentAssembly>
|
|
|
|
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.6.0" newVersion="4.0.6.0" />
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
<dependentAssembly>
|
|
|
|
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
<dependentAssembly>
|
|
|
|
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
<dependentAssembly>
|
|
|
|
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
<dependentAssembly>
|
|
|
|
|
<assemblyIdentity name="System.Text.Encodings.Web" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.5.1" newVersion="4.0.5.1" />
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
<dependentAssembly>
|
|
|
|
|
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
|
2024-05-14 16:17:33 +08:00
|
|
|
|
</dependentAssembly>
|
|
|
|
|
</assemblyBinding>
|
|
|
|
|
</runtime>
|
|
|
|
|
</configuration>
|