AspGerman Wiki

<TABLE>
<%
'Wichtig... Zuerst 0, dann die farben
farben = Array(0,"#CCCCCC","#AAAAAA","#999999")

For i = 1 To 20
	Response.Write _
	"<TR BGCOLOR=""" & cycleColor(farben) & """>" & _
	"<TD>Test</TD>" & 	"</TR>"
Next

Function cycleColor(ByRef cols)
	cycleColor = cols(cols(0)+1)
	cols(0) = (cols(0)+1) mod (ubound(cols)-1)
End function
%>
</TABLE>

geht natürlich auch mit CSS

<STYLE>
bgstyle0 {
	background-color: #000000;
}

bgstyle1 {
	background-color: #FFFFFF;
}
</STYLE>
<TABLE>
<%
'Wichtig... Zuerst 0, dann die farben
farben = Array(0,"bgstyle0","bgstyle1")

For i = 1 To 20
	Response.Write _
	"<TR class=""" & cycleColor(farben) & """>" & _
	"<TD>Test</TD>" & 	"</TR>"
Next

Function cycleColor(ByRef cols)
	cycleColor = cols(cols(0)+1)
	cols(0) = (cols(0)+1) mod (ubound(cols)-1)
End function
%>
</TABLE>

ScrewTurn Wiki version 2.0.33. Some of the icons created by FamFamFam.