From ffac1e69ca4cf79dfbd5bfa9e519f2fe9625ad7a Mon Sep 17 00:00:00 2001 From: zrg <z18737863051@163.com> Date: 星期一, 05 八月 2024 17:14:03 +0800 Subject: [PATCH] 异常反馈单 增加 字段 HErrLev varchar(100) --影响面程度(无法判断、停线、批量不良、偶发不良) 增加 异常反馈分析报表,增加下推签到单 --- 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