repeater OnItemCommand 事件中
TextBox txt = (TextBox)e.Item.FindControl("repeater中控件名称");
然后执行数据库更新操作,更新数据
foreach (RepeaterItem item in Repeater1.Items)
        {
            TextBox txtNiName
= (TextBox)item.FindControl("txtNiName");
           
string name=txtNiName.text;
         }
posted on 2011-08-15 12:01  易尔购  阅读(3651)  评论(0编辑  收藏  举报