asp网站问题getrow()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp网站问题getrow()相关的知识,希望对你有一定的参考价值。

能否帮详细我分析一下。对于tcache(0,y)是什么意思。
<%set rs1=conn.execute(sql)
if not rs1.eof then tcache=rs1.getrows()
rs1.close
set rs1=nothing
if not isempty(tcache) then
for y=0 to ubound(tcache,2)%>
<tr bgcolor="#FFFFFF">
<td align="center"><%=tcache(0,y)%></td>
<td><%=tcache(1,y)%></td>
<td align="center"><%=tcache(2,y)%></td>
<td align="center"><%=tcache(3,y)%></td>
<td height="22" align="center"><a href="?flag=downtop&newsid=<%=tcache(0,y)%>">取消固顶</a></td>
对于tcache(0,y)是什么意思。

tcache是个二维数组,tcache(0,y)就是此数组第(0,y)元素值,这个y的值是在for y=0 to ubound(tcache,2)的循环里取值.ubound(tcache,2)这个值是取数组tcache第2维的最大值,
if not isempty(tcache) then就是数组tcache不是空值则执行下面的循环。
循环以数组tcache的第二维y的初值为0,y的最高值为终值
参考技术A 这是第一行,第一列的写法,gerow()得到的是一个二维数组,循环列数,找数据呢

参考资料:http://www.oktvw.cn

以上是关于asp网站问题getrow()的主要内容,如果未能解决你的问题,请参考以下文章

ASP.NET 电子商务网站

如何将 facebook 帐户与 asp.net 网站集成?

发布ASP.net网站问题

如何确定网站所使用的开发技术(asp、php、jsp等等)?

如何将 ASP.NET 网站转换为 ASP.NET Web 应用程序

如何将c#做好的asp.net网站部署到iis上