asp如何设置动态表格的格式
我要做留言系统,有个问题不会代码如下:<tableborder="2"><!--DWLayoutTable--><tr><tdwidth="133"height="22"...
我要做留言系统,有个问题不会
代码如下:
<table border="2">
<!--DWLayoutTable-->
<tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">留言人</span></div></td>
<td width="156" valign="top"><div align="center"><span class="STYLE1">标题</span></div></td>
<td width="123" valign="top"><div align="center"><span class="STYLE1">留言时间</span></div></td>
<td width="118" valign="top"><div align="center"><span class="STYLE1">阅读次数</span></div></td>
<td width="141" valign="top"><div align="center"><span class="STYLE1">内容</span></div></td>
</tr>
<% While ((Repeat1__numRows <> 0) AND (NOT Recordset2.EOF)) %>
<tr>
<td height="17"><%=(Recordset2.Fields.Item("author").Value)%></td>
<td valign="top"><%=(Recordset2.Fields.Item("title").Value)%></td>
<td valign="top"><%=(Recordset2.Fields.Item("time").Value)%></td>
<td valign="top"><%=(Recordset2.Fields.Item("hit").Value)%></td>
<td valign="top"><%=(Recordset2.Fields.Item("content").Value)%></td>
</tr>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset2.MoveNext()
Wend
%>
</table>
是个2行5列的表格,如何改成5行2列的表格呢?
我直接建立5行2列的表格,再把记录集的数据拖进去,结果显示:
BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录
请忙帮改一下,谢谢
能不能讲详细点,谢谢 展开
代码如下:
<table border="2">
<!--DWLayoutTable-->
<tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">留言人</span></div></td>
<td width="156" valign="top"><div align="center"><span class="STYLE1">标题</span></div></td>
<td width="123" valign="top"><div align="center"><span class="STYLE1">留言时间</span></div></td>
<td width="118" valign="top"><div align="center"><span class="STYLE1">阅读次数</span></div></td>
<td width="141" valign="top"><div align="center"><span class="STYLE1">内容</span></div></td>
</tr>
<% While ((Repeat1__numRows <> 0) AND (NOT Recordset2.EOF)) %>
<tr>
<td height="17"><%=(Recordset2.Fields.Item("author").Value)%></td>
<td valign="top"><%=(Recordset2.Fields.Item("title").Value)%></td>
<td valign="top"><%=(Recordset2.Fields.Item("time").Value)%></td>
<td valign="top"><%=(Recordset2.Fields.Item("hit").Value)%></td>
<td valign="top"><%=(Recordset2.Fields.Item("content").Value)%></td>
</tr>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset2.MoveNext()
Wend
%>
</table>
是个2行5列的表格,如何改成5行2列的表格呢?
我直接建立5行2列的表格,再把记录集的数据拖进去,结果显示:
BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录
请忙帮改一下,谢谢
能不能讲详细点,谢谢 展开
2个回答
展开全部
啥意思 你是要表格竖着显示么
<table border="2">
<!--DWLayoutTable-->
<tr>
<td>
<table > <tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">留言人</span></div></td>
</tr>
<tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">标题</span></div></td>
</tr>
<tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">留言时间</span></div></td>
</tr>
<tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">阅读次数</span></div></td>
</tr>
<tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">内容</span></div></td>
</tr>
</table>
</td>
<% While ((Repeat1__numRows <> 0) AND (NOT Recordset2.EOF)) %>
<td>
<table > <tr>
<td height="22"><%=(Recordset2.Fields.Item("author").Value)%></td>
</tr>
<tr>
<td height="22"><%=(Recordset2.Fields.Item("title").Value)%></td>
</tr>
<tr>
<td height="22"><%=(Recordset2.Fields.Item("time").Value)%></td>
</tr>
<tr>
<td height="22"><%=(Recordset2.Fields.Item("hit").Value)%></td>
</tr>
<tr>
<td height="22"><%=(Recordset2.Fields.Item("content").Value)%></td>
</tr>
</table>
</td>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset2.MoveNext()
Wend
%>
</tr>
</table>
不过建议你用div 用表格横着显示代码麻烦了
<table border="2">
<!--DWLayoutTable-->
<tr>
<td>
<table > <tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">留言人</span></div></td>
</tr>
<tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">标题</span></div></td>
</tr>
<tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">留言时间</span></div></td>
</tr>
<tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">阅读次数</span></div></td>
</tr>
<tr>
<td width="133" height="22"><div align="center"><span class="STYLE1">内容</span></div></td>
</tr>
</table>
</td>
<% While ((Repeat1__numRows <> 0) AND (NOT Recordset2.EOF)) %>
<td>
<table > <tr>
<td height="22"><%=(Recordset2.Fields.Item("author").Value)%></td>
</tr>
<tr>
<td height="22"><%=(Recordset2.Fields.Item("title").Value)%></td>
</tr>
<tr>
<td height="22"><%=(Recordset2.Fields.Item("time").Value)%></td>
</tr>
<tr>
<td height="22"><%=(Recordset2.Fields.Item("hit").Value)%></td>
</tr>
<tr>
<td height="22"><%=(Recordset2.Fields.Item("content").Value)%></td>
</tr>
</table>
</td>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset2.MoveNext()
Wend
%>
</tr>
</table>
不过建议你用div 用表格横着显示代码麻烦了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
展开全部
if not rs.eof then
do while not rs.eof
response.write "<tr>"
response.write "<td>留言人</td><td>"&rs("留言人字段")&"</td>"
response.write "<td>标题</td><td>"&rs("标题字段")&"</td>"
...........
response.write "<td>内容</td><td>"&rs("内容")&"</td>"
response.write "</tr>"
rs.movenxt
loop
end if
rs.close
do while not rs.eof
response.write "<tr>"
response.write "<td>留言人</td><td>"&rs("留言人字段")&"</td>"
response.write "<td>标题</td><td>"&rs("标题字段")&"</td>"
...........
response.write "<td>内容</td><td>"&rs("内容")&"</td>"
response.write "</tr>"
rs.movenxt
loop
end if
rs.close
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询