To give a correct answer, you should let us know a bit more detail about your requirement. Do you want to create an HTML table with varying rows and columns ?
This code will do it.
<%
Dim iNumRows
Dim iNumCols
'set number of rows and columns
iNumRows=<number of rows you want for it>
iNumCols=<number of columns you want>
%>
<table border="1" cellpadding="3" cellspacing="3" align="center" width="100%">
<%
Dim iRows
Dim iCols
For iRows=1 To iNumRows Step 1
%>
<tr>
<%
For iCols=1 To iNumCols Step 1
%>
<td> </td>
<%
Next
%>
</tr>
<%
Next
%>
</table>
|