答案 0 :(得分:0)
将旧版应用程序升级到.net4.6.2后,我遇到了同样的问题。
问题是web.config中Microsoft.Security.AntiXssEncoder
中的旧版<httpRuntime>
,它似乎与新的.net版本不兼容。
我发现AntiXssEncoder库已直接转移到.net Framework 4.5版。
所以我将encoderType
属性更改为System.Web.Security.AntiXss.AntiXssEncoder
。
我的httpRuntime标签现在看起来像这样:
<httpRuntime targetFramework="4.6.2" requestValidationMode="4.5" enableVersionHeader="false" encoderType="System.Web.Security.AntiXss.AntiXssEncoder"/>