恼人的ASP问题,谁能帮个忙,谢谢
源代码如下:
...
arr1=rs1.getrows()
cols=rs1.fields.count
arr2=rs2.getrows()
arr3=rs3.getrows()
rows=ubound(arr1,2)+ubound(arr2,2)+ubound(arr3,2)
...
Session("arr(rows,cols+1)")
for i=0 to cols-1
Session("arr(i,cols+1)")="hello.mdb"
for j=0 to ubound(arr1,2)-1
Session("arr(i,j)")=arr1(i,j)
next
next
...
for i=0 to ubound(arr1,2)-1
response.write Session("arr(1,j)")
next
没有错误显示
却不能显示,为什么,请高手赐教