在ASP中 使用 kindeditor-4.1.4编辑器的详细教程

1、去官网下载最新版本:kindeditor-4.1.4编辑器 

下载地址:http://kindeditor.net/down.php


2、将下载的包放在网站根目录下面


4、配置文件图片上传目录,如果目录在UploadFile下





3、配置调用,官方已给出调用文档 asp/deom.asp里面



4、在自己的项目中使用:

<!-- 配置编辑器 -->
<link rel="stylesheet" href="../kindeditor-4.1.10/themes/default/default.css" />
<link rel="stylesheet" href="../kindeditor-4.1.10/plugins/code/prettify.css" />
<script charset="utf-8" src="../kindeditor-4.1.10/kindeditor.js"></script>
<script charset="utf-8" src="../kindeditor-4.1.10/lang/zh_CN.js"></script>
<script charset="utf-8" src="../kindeditor-4.1.10/plugins/code/prettify.js"></script>
<script>
    KindEditor.ready(function(K) {
        var editor1 = K.create('textarea[name="Content"]', {
            cssPath : '../kindeditor-4.1.10/plugins/code/prettify.css',
            uploadJson : '../kindeditor-4.1.10/asp/upload_json.asp',
            fileManagerJson : '../kindeditor-4.1.10/asp/file_manager_json.asp',
            allowFileManager : true,
            afterCreate : function() {
			  var self = this;
			  K.ctrl(document, 13, function() {
			  self.sync();
			  K('form[name=example]')[0].submit();
			  });
			  K.ctrl(self.edit.doc, 13, function() {
			  self.sync();
			  K('form[name=example]')[0].submit();
			  });
			  },afterBlur:function(){
						  this.sync();
			} 
        });
		
		 var editor2 = K.create('textarea[name="Contentb"]', {
            cssPath : '../kindeditor-4.1.10/plugins/code/prettify.css',
            uploadJson : '../kindeditor-4.1.10/asp/upload_json.asp',
            fileManagerJson : '../kindeditor-4.1.10/asp/file_manager_json.asp',
            allowFileManager : true,
            afterCreate : function() {
			  var self = this;
			  K.ctrl(document, 13, function() {
			  self.sync();
			  K('form[name=example]')[0].submit();
			  });
			  K.ctrl(self.edit.doc, 13, function() {
			  self.sync();
			  K('form[name=example]')[0].submit();
			  });
			  },afterBlur:function(){
						  this.sync();
			} 
        });
		
		
		 var editor3 = K.create('textarea[name="Contentc"]', {
            cssPath : '../kindeditor-4.1.10/plugins/code/prettify.css',
            uploadJson : '../kindeditor-4.1.10/asp/upload_json.asp',
            fileManagerJson : '../kindeditor-4.1.10/asp/file_manager_json.asp',
            allowFileManager : true,
            afterCreate : function() {
			  var self = this;
			  K.ctrl(document, 13, function() {
			  self.sync();
			  K('form[name=example]')[0].submit();
			  });
			  K.ctrl(self.edit.doc, 13, function() {
			  self.sync();
			  K('form[name=example]')[0].submit();
			  });
			  },afterBlur:function(){
						  this.sync();
			} 
        });
		
        prettyPrint();
    });
</script>


//后台ASP文档

<!-- 编辑器字符过滤 -->
<%



Function htmlspecialchars(str)
str = Replace(str, "&", "&amp;")
str = Replace(str, "<", "&lt;")
str = Replace(str, ">", "&gt;")
str = Replace(str, """", "&quot;")
htmlspecialchars = str
End Function






%>


<textarea name="Content" style="width:700px;height:400px;visibility:hidden;"><%=htmlspecialchars(htmlData)%></textarea>

<textarea name="Contentb" style="width:700px;height:400px;visibility:hidden;"><%=htmlspecialchars(htmlData)%></textarea>

<textarea name="Contentc" style="width:700px;height:400px;visibility:hidden;"><%=htmlspecialchars(htmlData)%></textarea>







评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值