asp中的动态数组

<%
Dim array1(),i

ReDim array1(3)
array1(3)=10
response.Write(array1(3)&"<br>")
i=15
ReDim array1(i)
Response.Write(UBound(array1))
%>

posted @ 2016-07-20 12:39  码农耕耘  阅读(233)  评论(0编辑  收藏  举报