获取遍历出来的(HtmlTextArea)值把它带到aspx中 在aspx中有一个tempStock.remark = 带过来的参数
Remarks.ascx前台代码
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Remarks.ascx.cs" Inherits="Remarks" %>
<p style=" text-align:center">请修改所选中的备注!</p>
<asp:Panel ID="Panel1" runat="server"></asp:Panel>
Remarks.ascx.cs后台代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Collections;
public partial class Remarks : System.Web.UI.UserControl
{
HtmlTextArea ht = null;
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)
{
ht = new HtmlTextArea();
ht.ID = "id";
ht.InnerText = stockInfo.remark;
Panel1.Controls.Add(ht);
}
}
}
}
把HtmlTextArea的值给遍历出来存到数组里面去
但我在aspx中点击按钮时把该文本的的值获取过来
完成值的传递和数据的更新!!
我要做修改点击拆箱就要获取ascx中的HtmlTextArea的值把它带到aspx中做修改? 传值 修改 C#
补充:VB , 基础类