From 5ee8eb54e7c29d1f23dde1a00028dc8fda9f35a5 Mon Sep 17 00:00:00 2001 From: yxj <1qaz@123> Date: 星期五, 26 八月 2022 16:43:31 +0800 Subject: [PATCH] 采购入库扫码模块,上传增加递入组织ID --- WebTM/Web.config | 26 ++++++++++++++++++-------- 1 files changed, 18 insertions(+), 8 deletions(-) diff --git a/WebTM/Web.config b/WebTM/Web.config index a2666c2..2db5211 100644 --- a/WebTM/Web.config +++ b/WebTM/Web.config @@ -4,11 +4,21 @@ 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" /> + </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> + </system.webServer> +</configuration> -- Gitblit v1.9.1