0
我有一個GridView,其中ItemTempate包含一個HTML表格。我正在嘗試根據GridViewRow索引設置表格行的類,如下所示。根據行索引設置html表格的行背景顏色
<ItemTemplate>
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="tblAlternate">
<tr class="<%#(Container.RowIndex+1)%2==0?"CustomBGColor":"WhiteBGColor"%>">
....
</tr>
</table>
</ItemTemplate>
任何人都可以建議如何做到這一點? 謝謝。
你可以用普通的css選擇器做到這一點 – Homungus
你能舉個例子嗎? – user3007740
就像@ SW4在他的回答中顯示的那樣。 – Homungus