<asp:Repeater ID="RepPicbar" runat="server">
<ItemTemplate >
<div class ="picbar"><div class ="picbar_left">
<img src=<%#Eval("SmallPicUrl")%> /></div><div class="picbar_right">
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></div> </div>
</ItemTemplate>
</asp:Repeater>
其产生的textbox中的text值应怎样获取?用TexBox1.text无法获取。
楼主是保存的时候要取值吗?
for(var i = 0; i < RepPicbar.Items.Count;i++){
TextBox tb = RepPicbar.Items[i].FindControl("TextBox1") as TextBox;
if(tb!=null){
//tb.Text;
}
}
楼上的正解
protected void RepPicbar_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
TextBox m_Txt = (TextBox )e.Item.FindControl("TextBox1");
}
要用脚本才能取到值了
for或是foreach遍历,FindControl到控件,取值。高层的都是正解!