asp的问题
for i=0 to rs.fields.count-1
response.write"<td>"& rs.fields(i).name &"</td>"
问题:这两句是什么意思,count-1又是什么?
参考答案:显示每个数据库的字段名.
count-1是统计字段的个数.
for i=0 to rs.fields.count-1
response.write"<td>"& rs.fields(i).name &"</td>"
问题:这两句是什么意思,count-1又是什么?
参考答案:显示每个数据库的字段名.
count-1是统计字段的个数.