显示问题!!
有个问题我的程序是下面的,它在一个表格里三列显示,如果我想改成两列显示,怎么改?谢谢!<table width="100%" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="3%" height="2"></td>
<td width="33%" height="2" align="left" valign="top"></td>
<td width="33%" height="2" align="left" valign="top"></td>
<td width="33%" height="2" align="left" valign="top"></td>
</tr>
<%do while not rs.eof%>
<tr>
<td width="1%"> </td>
<%if not rs.eof then
href="music_show.asp?searchtable=music&searchfield=id&searchword=" & rs.fields("id")
%>
<td width="33%" align="left" valign="top"><a href="<%=href%>"><%=trim(rs.Fields ("title"))%></a></td>
<%
rs.movenext
end if%>
<%if not rs.eof then
href="music_show.asp?searchtable=music&searchfield=id&searchword=" & rs.fields("id")
%>
<td width="33%" align="left" valign="top"><a href="<%=href%>"><%=trim(rs.Fields ("title"))%></a></td>
<%
rs.movenext
end if%>
<%if not rs.eof then
href="music_show.asp?searchtable=music&searchfield=id&searchword=" & rs.fields("id")
%>
<td width="33%" align="left" valign="top"><a href="<%=href%>"><%=trim(rs.Fields ("title"))%></a></td>
<%
rs.movenext
end if%> </tr>
<%loop%>
<%rs.Close %>
</table>