哪吒机器人提醒:

提醒:博客园-邀月工作室
【标题】CKEditor在asp.net环境下的使用一例
【摘要】作者: 邀月 发表于 2010-08-09 23:49 原文链接 阅读: 4 评论: 0以前习惯了fckeditor,编译为dll,一直在asp.net环境下使用正常。今天试用了一下ckeditor3.3.2,下载地址:http://ckeditor.com/download由于该版本重新架构,因而不采用dll的形式,而代之以js模式。于是新建一项目(基于framework 4),项目结构如下:一、首先配置ckecitor将下载的ckeditor_3.3.2.zip解压到ckeditor下,删除_source和_samples文件夹,保留lang文件夹下仅en.js,zh-cn.js,zh.cs,其余删除。修改config.js文件,增加如下内容:ckeditor.editorconfig = function( config ){ config.language = 'zh-cn'; config.uicolor = '#336699'; config.height = 300; //高度 //工具栏 config.toolbar =[ ['bold', 'itali... (04-14 21:20)