mvc下的FCKEditor富文本编辑器

最近学习中需要用到一个html富文本编辑器,在google了一番后选择了重典大哥的fckeditor在mvc上的应用
原文:http://www.cnblogs.com/chsword/archive/2008/06/02/aspnetextfckeditor.html
这里是他文章中用到的editor的压缩包,解压后放到website跟目录下就可以使用:
https://files.cnblogs.com/tonywang711/MvcFCKEditor.rar
用法
View页写
<%=Html.FckTextBox("content")%> 就可以调用控件
Controller写
ViewData["content"]="<div>....</div>";可以赋值
通过Request.Form["Content"];就可以取到输入内容
注意:
view页需要加<script src="http://www.cnblogs.com/Editor/fckeditor.js" type="text/javascript"></script>;
Controller取值时要禁用它的验证,否则会报安全错误:[ValidateInput(false)] and this.ValidateRequest = false;
非常不错的一个东东,目前还在继续学习中...

posted @ 2009-10-13 09:01  Tony.wang  阅读(2082)  评论(1编辑  收藏  举报