asp 输出一行两列的表格后换行
5个回答
展开全部
<tr>
<%
dim i
for i=1 to 10
%>
<td></td>
<%
if i mod 2=0 then
%>
</tr>
<%end if%>
<%next%>
建议直接用DIV来做。
<style>
.box{width:405px;height:auto;margin:0 auto;}
.box div{float:left;width:200px;height:200px;}
.box .a{background:#f00;margin-top:5px;}
.box .b{background:#0f0;margin-top:5px;margin-left:5px;}
</style>
<div class="box">
<%
'这里开始循环,我这里用FOR循环来代替,你也可以换成循环数据DO等方式
dim i
for i=1 to 10
%>
<div class="<%if i mod 2=0 then response.write"b" else response.write"a"%>">第<%=i%>个DIV。这里的if判断只是应用两个不同的样式区别而已,并不控制其它。</div>
<%next%>
</div>
DIV布局,只要设置好窗口宽度,做好浮动,它自己就会排列好了。。
2014-02-28
展开全部
<table> <%i=0while not rs.eofi=i+1%><tr><td><%=rs("调用字段名称")%></td><%if i mod 2=0 then%></tr><tr><%end if%></tr><%rs.movenextwend%></table>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-02-28
展开全部
<table>"""""""在这里写个循环就OK了!!!""""""""""""<tr><td><%=rs("调用字段名称")%></td><td><%=rs("调用字段名称")%></td></tr></table>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-02-28
展开全部
string a="内容1":string b="内容2";string str = "<table><tr><td>"+a+"<td><td>"+"b"+</td></tr></table>"+"<br>";
response.write str;
response.write str;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-02-28
展开全部
用循环!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询