在ascx中怎么获取后台遍历出来HtmlTextArea(多行文本域)的值并且把它传到aspx中?
public void Fill(int count,ArrayList sdf) { ArrayList ar = sdf; Model.stock stockInfo = null; for (int i = 0; i < ar.Count; i++) { stockInfo = Bll.Stock.GetStockByUUID(ar[i].ToString()); if (IsPostBack) { HtmlTextArea ht = new HtmlTextArea(); ht.ID ="stocs"; ht.Name = "hh" + i; ht.InnerText = stockInfo.remark; Panel1.Controls.Add(ht); } } }