我想從後面的代碼中使用下面的代碼獲取textarea值。在代碼隱藏中獲取textarea
HtmlTextArea bodytextarea = new HtmlTextArea();
bodytextarea = (HtmlTextArea)(this.FindControl("codearea"));
string txtbod = bodytextarea.Value;
當我調試它時,我得到一個空引用異常,說bodytextarea爲空。我不得不提及我的textarea不是runat =「server」,我不想在服務器端進行。任何幫助?
呀:)選項不夠;) – JohnnBlade 2012-07-23 09:10:24
我有'RUNAT一個TextArea = 「服務器」'在我的內容頁,但我想從我的主頁面訪問它。我在我的內容頁面中有幾個標籤,我在主頁面中調用它:'lblUser =(System.Web.UI.WebControls.Label)ContentMain.FindControl(「lblUser」);'。我如何對TextArea做同樣的事情? – SearchForKnowledge 2014-09-04 14:52:36