我正在尝试使用以下代码从后面的代码中获取 textarea 值。
HtmlTextArea bodytextarea = new HtmlTextArea();
bodytextarea = (HtmlTextArea)(this.FindControl("codearea"));
string txtbod = bodytextarea.Value;
当我调试它时,我得到一个空引用异常,说 bodytextarea 为空。我不得不提到我的 textarea 不是 runat="server" 并且我不想在服务器端制作它。有什么帮助吗?