From 5dec1cdbdc79b79754caf32cc5ddffc5feabc881 Mon Sep 17 00:00:00 2001 From: duhe <226547893@qq.com> Date: 星期五, 17 一月 2025 09:42:53 +0800 Subject: [PATCH] 宝工排产:排产日期 变为 可调整 --- WebTM/Web.config | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/WebTM/Web.config b/WebTM/Web.config index bbfd8ec..3903a18 100644 --- a/WebTM/Web.config +++ b/WebTM/Web.config @@ -6,15 +6,24 @@ <configuration> <system.web> <compilation debug="true" targetFramework="4.5" /> - <httpRuntime targetFramework="4.5" /> + <httpRuntime targetFramework="4.5" maxQueryStringLength="102400" /> </system.web> <appSettings> <add key="Name" value="61.130.49.162:9090/WMSAPI///" /> </appSettings> <system.webServer> <staticContent> - <remove fileExtension=".grf"/> + <remove fileExtension=".grf" /> <mimeMap fileExtension=".grf" mimeType="text/xml" /> </staticContent> + <handlers> + <remove name="StaticFile" /> + <add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule" resourceType="Either" requireAccess="Read" /> + </handlers> + <security> + <requestFiltering> + <requestLimits maxAllowedContentLength="10485760" maxQueryString="10485760" /> <!--璁剧疆鍙傛暟鍐呭鐨勬渶澶ч暱搴︿负10MB锛岄粯璁ゆ槸4MB,鏈�澶ф敮鎸�2GB--> + </requestFiltering> + </security> </system.webServer> </configuration> -- Gitblit v1.9.1