La primera vez si debe funcionar, aqui te dejo este ejemplo:
Código:
<%
Dim f, c
f = 10
c = 2
ReDim matriz(f, c)
'Response.Write(ubound(matriz,2))
'Response.End
for i = 0 to uBound(matriz)
matriz(i,0) = "columna "& i
matriz(i,1) = i
next
%>
<table border="1">
<tr>
<th>Columna 1</th>
<th>Columna 2</th>
</tr>
<%
for i = 0 to uBound(matriz)
Response.Write("<tr>")
Response.Write("<td>"&matriz(i,0)&"</td>")
Response.Write("<td>"&matriz(i,1)&"</td>")
Response.Write("</tr>")
next
%>
</table>
Existen otras estructuras que te ayudan a esta tarea...por ejemplo yo a lo mejor trataria de implementar alguna solución con el
objeto diccionario, a lo mejor te hace la vida más amable.
Saludos