ASP分列显示并且隔行换背景色问题!
我想实现一行分两列,并且想要隔行换一种背景颜色,可是在换背景颜色的时候老是不对,请高手帮忙看一下,指点一下! 效果如下:
代码如下:
<table>
<%
Sql="select * from Ent_info order by id desc"
Set Rs=Conn.ExeCute(Sql)
if not Rs.eof then
i=0
do while not Rs.eof
bt_str=trim(Rs("Ent_name"))
if i mod 2=0 then
color_sign="#ECF5FF"
else
color_sign=""
end if
if i=2 then
i=0
%>
<tr bgcolor="<%=color_sign%>">
<%end if%>
<td width="4%" height=20 class=a12><img src="image/mz_icontop.gif" width="25" height="15"></td>
<td width="45%" align=middle class=a12><p align="left"><%=bt_str%></p></td>
<%
Rs.movenext
i=i+1
Loop
end if
Rs.close
'--------------企业名录列表结束 -----------------
%>
</tr>
</table>
[[it] 本帖最后由 qcxy 于 2008-8-16 09:04 编辑 [/it]]