动态在页面上添加列
数据库里的tab2用户是可以动态添加列的,如果要查询这个表的所有列的话,这就需要查询页面也能动态添加列才行。这种功能有什么方法实现呢??
恳请各位帮忙!!
------解决方案--------------------我现在的系统做了这个功能
但是你的列增加了,第一行列的名字就只能用数据库里的字段名了
......查询
if not rs.eof then
for j= 0 to rs.fields.count-1
response.write " <td align=center> "&rs.fields(j).name& " </td> "
next
do while not rs.eof
response.write( " <tr> ")
for j= 0 to rs.fields.count-1
response.write " <td align=center> "&rs(j)& " </td> "
next
response.write( " </tr> ")
rs.movenext
loop
end if