时间:2021-04-16
针对DW中实现重复区域的横向和纵向显示方法,经过不断的调试后,有一种再简单不过的方法就轻松实现了重复区域的横向和纵向的显示。
想如何显示就如何显示,下面举例给大家演示下:
<table width="55%" border="0" cellpadding="6">
<tr>
<td width="32%" align="center"><strong>新闻标题</strong></td>
<td width="48%" align="center"><strong>点击数</strong></td>
<td width="11%" align="center"><strong>修改</strong></td>
<td width="9%" align="center"><strong>删除</strong></td>
</tr>
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<tr>
<td align="center"><%=(Recordset1.Fields.Item("bt").Value)%></td>
<td align="center"><%=(Recordset1.Fields.Item("djs").Value)%></td>
<td align="center"><strong>修改</strong></td>
<td align="center"><strong>删除</strong></td></tr>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
</table>
上面这段代码实现的是纵向显示,如果你要把它调整为横向显示的话,只需要
把代码里面的两个<tr>进行改变下位置就可以轻松实现了。下面是<tr>改动后实现横向
显示的代码:
<table width="55%" border="0" cellpadding="6">
<tr>
<td width="32%" align="center"><strong>新闻标题</strong></td>
<td width="48%" align="center"><strong>点击数</strong></td>
<td width="11%" align="center"><strong>修改</strong></td>
<td width="9%" align="center"><strong>删除</strong></td>
</tr><tr>
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<td align="center"><%=(Recordset1.Fields.Item("bt").Value)%></td>
<td align="center"><%=(Recordset1.Fields.Item("djs").Value)%></td>
<td align="center"><strong>修改</strong></td>
<td align="center"><strong>删除</strong></td>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%></tr>
</table>
不知道大家有没有发现是哪两个<tr>改变了位置。我直接指出来吧,其实就是把下面这段代码
<tr>
<td align="center"><%=(Recordset1.Fields.Item("bt").Value)%></td>
<td align="center"><%=(Recordset1.Fields.Item("djs").Value)%></td>
<td align="center"><strong>修改</strong></td>
<td align="center"><strong>删除</strong></td></tr>
前后的两个<tr>进行改动下。调整成如下代码的位置去,就轻松实现了纵向显示:
<tr>
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<td align="center"><%=(Recordset1.Fields.Item("bt").Value)%></td>
<td align="center"><%=(Recordset1.Fields.Item("djs").Value)%></td>
<td align="center"><strong>修改</strong></td>
<td align="center"><strong>删除</strong></td>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%></tr>
反之亦然,互换调整两个<tr>的位置就轻松实现了重复区域横向显示和纵向显示的切换。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在Word2003中可以轻松实现相同Word文档中页面横向显示和纵向显示的混排效果,设置方法如下所述:1.在“页面设置”中直接设置第1步,打开Word2003窗
本文实例讲述了php实现数组纵向转横向并过滤重复值的方法。分享给大家供大家参考,具体如下:一、问题有数组:array(6=>array(5=>'黑xx',42=
为了让IMG自适应大小,如下我做了一个横向自适应的示例:IMG样式(横向拉伸,纵向自动匹配大小)DIV样式(元素居中显示)IMG样式(横向拉伸,纵向自动匹配大小
获取页面中元素到文档区域document的横向、纵向坐标的两种方法及其比较在js控制元素运动的过程中,对于页面元素坐标位置的获取是经常用到的,这里主要总结下两种
2003word文档横向排版的方法: 1、先用Word打开需要排版的文档。然后点击“页面布局”。 2、点击“纸张方向”。 3、然后会有“纵向”和“横向