ASP.NET Repeater 单双行数据换色示例
程序员文章站
2024-02-23 18:36:10
前台点击repeater的itemcreated触发事件。
cs代码:
if (e.item.itemtype == listitemtype.item ||...
前台点击repeater的itemcreated触发事件。
cs代码:
if (e.item.itemtype == listitemtype.item || e.item.itemtype == listitemtype.alternatingitem) { if ((e.item.itemindex + 1) % 2 == 0) { ((htmltablerow)e.item.findcontrol("row2")).bgcolor = "#ffe6e6"; } else { ((htmltablerow)e.item.findcontrol("row2")).bgcolor = "#e8f5fd"; } }
上一篇: Mysql性能优化方案分享
下一篇: Mysql数据库之索引优化