/ Published in: ASP
Expand |
Embed | Plain Text
Sub PrintArray(arr) Dim ColNmbr,RowNmbr Response.Write "<table border=""1"" cellspacing=""0"">" For RowNmbr = 0 to ubound(arr) Response.Write "<tr>" For ColNmbr = 0 to (Ubound(arr,2) - 1) Response.Write "<td>" &arr(RowNmbr,ColNmbr) & "</td>" Next Response.Write "</tr>" Next Response.Write "</table>" End Sub
You need to login to post a comment.
