欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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