中继器项数据绑定

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中继器项数据绑定相关的知识,希望对你有一定的参考价值。

  1. protected void rptMyRepeater_ItemDataBound(Object Sender, RepeaterItemEventArgs e)
  2. {
  3. if (this.showEmployerControls)
  4. {
  5. if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
  6. {
  7. MyCustomClass resultItem = (MyCustomClass)e.Item.DataItem;
  8. // do stuff here
  9. }
  10. }
  11. }

以上是关于中继器项数据绑定的主要内容,如果未能解决你的问题,请参考以下文章

使用 #eval() 将来自单个数据集的多个表中的数据绑定到转发器

将字典绑定到中继器

Angular 11-数据绑定数组项

0001 WindowsForms的数据绑定(基础)

为服务总线中继绑定设置 Azure Service Fabric 侦听器

正确单击数据网格中的按钮时,Telerik RadGridView 选定项绑定不起作用