推荐你用KindEditor控件。
比如ckeditor这个官网上都是有asp.net的现成的例子的。
http://www.cnblogs.com/zengxiangzhan/archive/2010/03/10/1682702.html
你可以在这里下载了下,都是最新官网上的
全部配置好的.http://download.csdn.net/detail/king_jincheng/4995014
使用方法:
1、在页面<head>中引入ckeditor核心文件ckeditor.js
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
2、在使用编辑器的地方插入HTML控件<textarea>
<textarea id="TextArea1" cols="20" rows="2" class="ckeditor"></textarea>
如果是ASP.NET环境,也可用服务器端控件<TextBox>
<asp:TextBox ID="tbContent" runat="server" TextMode="MultiLine" class="ckeditor"></asp:TextBox>
注意在控件中加上 class="ckeditor" 。
3、将相应的控件替换成编辑器代码
<script type="text/javascript"> CKEDITOR.replace('TextArea1');//如果是在ASP.NET环境下用的服务器端控件<TextBox> CKEDITOR.replace('tbContent');//如果<TextBox>控件在母版页中,要这样写 CKEDITOR.replace('<%=tbContent.ClientID.Replace("_","$") %>');</script>