一江春水jj在上个帖子中说
引用:
我想让重复区域横向显示,可是怎么弄也不行,在网上查了很多帖子,也试了没用。下面是我的代码,请高手帮助修改一下,看看怎样可以横向显示。
<body>
<% while ((Repeat1__numRows-- != 0) && (!Recordset1.EOF)) { %>
<table width="48" border="1">
<tr>
<td width="38"><img src="<%=(Recordset1.Fields.Item("tu"
.value)%>" border="0" /></td> <%
Repeat1__index++;
Recordset1.MoveNext();
}
%>
</tr>
</table>
</body>
tr代表行...td代表列..你要横着显示,把那个地方加到列的地方.看看,不知道有没理解错误.