我有使用ckeditor的表格。这种形式在Asp.Net 2.0和3.5上都可以正常工作,但现在在Asp.Net 4+中不起作用。我有ValidateRequest =“false”指令。有什么建议么?

最佳答案

在错误页面本身上找到了解决方案。只需在web.config中添加requestValidationMode =“2.0”

<system.web>
    <compilation debug="true" targetFramework="4.0" />
    <httpRuntime requestValidationMode="2.0" />
</system.web>
MSDN信息:HttpRuntimeSection.RequestValidationMode Property

08-28 12:17