1.首先到官网下载http://ueditor.baidu.com/website/download.html#ueditor
2.然后把解压后的文件复制到项目中(放在UEditer中),如图
3.在当前项目中引用NewNewtonJson.dll文件
4.新建一个test页面,在页面的title下面引入js文件
<script src="../../UEditer/ueditor.config.js" type="text/javascript"></script> <script src="../../UEditer/ueditor.all.js" type="text/javascript"></script>
5.在页面中需要放置富文本编辑器的地方放置
<script id="container" name="content" type="text/plain">
这里写你的初始化内容
</script>
<script type="text/javascript">
var ue = UE.getEditor('container');
</script>
6.可以在ueditor.config.js文件对编辑器进行设置
7.当然,由于.net的安全机制,是不能直接取到含有html的值的
所以按照提示在webconfig中的sys.web节点下设置
<httpRuntime requestValidationMode="2.0"/>
然后在引用UEditer页面page指令中配置 ValidateRequest="false"