在asp.net网站上提交表单时,从nicEdit捕获服务器端的内容

时间:2011-11-30 14:30:56

标签: c# nicedit

我在我的asp页面中使用了nicedit。我正在使用asp.net开发一个网站。我设法得到了nicedit工作,但是如何获得textarea的值,我想在单击提交按钮时将值存储在DB中。实际上我试图在服务器端代码(c#)中获取textarea值。

<script type="text/javascript" src="js/nicEdit.js"></script> 
<script type="text/javascript">
   //<![CDATA[
    bkLib.onDomLoaded(function () {
        try {
            new nicEditor({ fullPanel: true }).panelInstance('bee');
        }
        catch (ex)
      { }
    });
   //]]> 
</script> 

 <textarea id="bee" runat="server"></textarea>

2 个答案:

答案 0 :(得分:1)

要获取输入数据的结果,您需要传递textarea的ID。 见下文:

data = new nicEditors.findEditor('bee'); // bee is the ID of the textarea
d = data.getContent(); // return the content

答案 1 :(得分:0)

您可以通过Value属性

获取textarea的值
string val = bee.Value