关于动态填充表格的问题。在线等,中午结帖。
| col1 | col2 | col3 | col4 | col5|
----------------------------------------------------------------------
| col1 data | col2 data | col3 | col3 |col4 data1 | col5|
|
| col1 | col2 | col3 | col4 | col5|
----------------------------------------------------------------------
| col1 data | col2 data | col3 | col3 |col4 data1 | col5|
|
你是不是这个意思啊?
只要可以实现就行
与有两行数据的排列方式相同
<td><table>
<%while rs.EOF <> true
response.write "<tr><td>" & rs("id") & "</td></tr>"
rs.movenext
wend
%>
</table></td>
具体的变量,宽度你自己调整~!~
按照你的方法,还是没有实现换行啊,如果两条记录,那么第二条记录是跟在第一条记录后面显示出来的,在同一行
不好意思,刚才说错了,放错了地方
你提供的方法,是换了行,但是,第二条记录在col1的下面显示出来了,而不是在col4 data1 下面接着显示的