富文本编辑器提交内容 报错

解决方法: 在配置文件里  ,将你的一般处理程序文件,去掉安全验证:

<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<pages validateRequest="false" />
</system.web>

<location path="indexx.aspx">
<system.web>
<httpRuntime requestValidationMode="2.0"/>
<pages validateRequest="false"></pages>
</system.web>
</location>
<location path="index.aspx">
<system.web>
<httpRuntime requestValidationMode="2.0"/>
<pages validateRequest="false"></pages>
</system.web>
</location>


</configuration>

原文地址:https://www.cnblogs.com/hanxiaofei/p/7845607.html