KindEditor富文本编辑器, 从客户端中检测到有潜在危险的 Request.Form 值


在用富文本编辑器时经常会遇到的问题是asp.net报的”检测到有潜在危险的 Request.Form 值“一般的解法是在aspx页面   page  标签中加上 validaterequest='false'  但这样的话   既不安全

  也不一定有效,好吧,说说我的解决方法吧, 就是在提交的时候不让富文本的内容提交,先是把内容编码给到一个隐藏标签,然后给富文本赋空值。

 1           KindEditor.ready(function (K) {
 2                 Editor = K.create('#txtIntroduction', {
 3                     items: [
 4                         'bold', 'italic', 'underline', '|', 'insertorderedlist', 'insertunorderedlist', '|', 'image', '|', 'forecolor', 'hilitecolor', 'fontname', 'fontsize', '|', 'source'
 5                     ],
 6                     uploadJson: '../../Scripts/kindeditor/uploadpic.aspx',
 7                     afterCreate: function () {
 8                         this.sync();
 9                     },
10                     afterBlur: function () {
11                         this.sync();
12                     },
13                     afterChange: function () {
14                         this.sync();
15                     }
16                 });
17             });
18         });
19 
20         function AddCheck() {
21     $("#hdIntroduction").val(escape(Editor.html()));
22             $('#txtIntroduction').val("");
23             Editor.html("");
24         }
25                 <asp:Button ID="btnsave" Text="保存设置" runat="server" OnClick="btnsave_Click" OnClientClick="return AddCheck();" />
View Code

 

 

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM