|
Displaying Source Code(s)
|
|
Array Count
--------------------------------------------------------------------------------
Description : Array Count
<%
Dim OneDimArray(4)
OneDimArray(0) = "Hello,"
OneDimArray(1) = "It's"
OneDimArray(2) = "Me"
OneDimArray(3) = "CShellVB !"
Response.Write UBound(OneDimArray)
%>
|
|
|