
02/09/2004, 12:01
|
 | | | Fecha de Ingreso: enero-2004
Mensajes: 425
Antigüedad: 21 años, 4 meses Puntos: 1 | |
prueba con este codigo a ver si es lo que necesitas
:::::::::::::::::::::::::::::::::::::::::::::::::: ::
CODIGO
:::::::::::::::::::::::::::::::::::::::::::::::::: :::
<table width="<%=Request.Form("width")%>" height="<%=Request.Form("height")%>" border="<%=Request.Form("border")%>" cellpadding="<%=Request.Form("cellpadding")%>" cellspacing="<%=Request.Form("cellspacing")%>">
<%
Dim x,y
for x=1 to Request.Form("num_filas")
%>
<tr>
<%
for y=1 to Request.Form("num_columnas")%>
<td><%=x%>,<%=y%></td>
<%Next%>
</tr>
<%Next%>
</table> |