您当前位置:桂林网站建设 > 新闻资讯
ASP数组的使用
Time:2011-12-16 下午 10:39:10
<%
Dim a(3)
a(0)="数值1"
a(1)="数值2"
a(2)="数值3"
a(3)="数值4"

For i=0 to 3
Response.Write "a("&i&")="&a(i)&"<br>"
Next

Response.Write "数组长度="&Ubound(a)
%>

最新资讯