From 119fc7221493f98552caee06fa9f0cc140e5dea0 Mon Sep 17 00:00:00 2001 From: duhe <226547893@qq.com> Date: 星期一, 01 四月 2024 13:27:20 +0800 Subject: [PATCH] 销售订单:编辑页面子表批量删除 --- WebTM/Web.config | 31 +++++++++++++++++++++++-------- 1 files changed, 23 insertions(+), 8 deletions(-) diff --git a/WebTM/Web.config b/WebTM/Web.config index a2666c2..3903a18 100644 --- a/WebTM/Web.config +++ b/WebTM/Web.config @@ -4,11 +4,26 @@ http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> - <system.web> - <compilation debug="true" targetFramework="4.5" /> - <httpRuntime targetFramework="4.5" /> - </system.web> - <appSettings> - <add key="Name" value="61.130.49.162:9090/WMSAPI///" /> - </appSettings> -</configuration> \ No newline at end of file + <system.web> + <compilation debug="true" 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" /> + <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