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;
         }

相关文章:

  • 2022-12-23
  • 2022-03-08
  • 2022-02-24
  • 2021-07-23
  • 2021-09-03
  • 2021-06-21
猜你喜欢
  • 2021-07-30
  • 2022-12-23
  • 2022-12-23
  • 2021-09-19
  • 2022-02-22
  • 2022-02-15
  • 2021-07-16
相关资源
相似解决方案