zoukankan      html  css  js  c++  java
  • 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

      

  • 相关阅读:
    Qt数据库集成应用封装
    Qt个人研究进展
    Qt仿win7自动顶部最大化左侧右侧半屏效果
    Qt编写QUI皮肤生成器
    java定时任务
    进程间通信(java)--队列
    单例设计模式-java
    Java RMI
    远程调用方式概述
    IO模型-java版
  • 原文地址:https://www.cnblogs.com/scien626/p/4427740.html
Copyright © 2011-2022 走看看