/ Published in: ASP
this procedure displays the passed array
Expand |
Embed | Plain Text
'this procedure displays the passed array sub displayArray(theArray) for i = 0 to ubound(theArray) response.write theArray(i) & ", " next response.write "<br />" end sub
You need to login to post a comment.
