我使用下面的命令在Web.config中添加一个条目
C:\Windows\System32\inetsrv>appcmd set config "MarketWorkFlowWebApp" section:system.webServer/security/requestFiltering /allowDoubleEscaping:false
输出:
Applied configuration changes to section "system.webServer/security/requestFiltering" for "MACHINE/WEBROOT/APPHOST/MarketWorkFlowWebApp" at configuration commit
path "MACHINE/WEBROOT/APPHOST/MarketWorkFlowWebApp"
添加设置工作正常。
要删除上述条目,我使用以下命令
C:\Windows\System32\inetsrv>appcmd set config "MarketWorkFlowWebApp" -section:system.webServer/security/requestFiltering
输出:
Applied configuration changes to section "system.webServer/security/requestFiltering" for "MACHINE/WEBROOT/APPHOST/MarketWorkFlowWebApp" at configuration commit
path "MACHINE/WEBROOT/APPHOST/MarketWorkFlowWebApp"
但是web.config仍然包含这些条目。
那么如何从web.config中删除任何现有的标签。
答案 0 :(得分:1)
这对我有用:
appcmd.exe set config "Default Web Site/" -section:system.webServer/security/requestFiltering /allowDoubleEscaping:"True"
然后再说它......
appcmd.exe clear config "Default Web Site/" -section:system.webServer/security/requestFiltering /allowDoubleEscaping