关于xheditor富文本框的配置,在本站中已有详细的说明了,如果你想学习配置方面的资料,请查阅:http://www.dzwebs.net/4593.html
下面本文给您重点讲解的是:如何在页面中引用多个实例,如何在后台取得xheditor的值,以便保存到数据库。
一、同一页面引用多个xheditor实例
第一个实例:代码加在BODY范围之内
<textarea name="content1" class="xheditor {cleanPaste:2,upImgUrl:'upload.aspx',emotPath:'MyEditor/xheditor_emot/'}" style="width:930px; height:330px;">这里是内容</textarea>
第二个实例:代码加在BODY范围之内
<textarea name="content2" class="xheditor {cleanPaste:2,upImgUrl:'upload.aspx',emotPath:'MyEditor/xheditor_emot/'}" style="width:930px; height:330px;">这里是内容</textarea>
第三个实例:代码加在BODY范围之内
<textarea name="content3" class="xheditor {cleanPaste:2,upImgUrl:'upload.aspx',emotPath:'MyEditor/xheditor_emot/'}" style="width:930px; height:330px;">这里是内容</textarea>
其它以此类推,很多地方都相同,唯一不同的是富文本框的name有所区别,可自行修改。
二、在后台获取xheditor的值
通过下面这样的代码即可获取值。
System.Web.HttpContext.Current.Request.Form["content1"].Trim();
System.Web.HttpContext.Current.Request.Form["content2"].Trim();
System.Web.HttpContext.Current.Request.Form["content3"].Trim();