protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
ImageButton lb = (ImageButton)e.Item.FindControl("IbOK");
TextBox tb = (TextBox)e.Item.FindControl("c1nub1");
if (lb.OnClientClick)
{
string str = tb.Text;
//.......... 更改数据库记录省略
}
}
}
ImageButton 触发后 取 Repeater1 中 当前行的 TextBox 值 有谁知道蓝色部分该怎么写吗