Estimados amigos, ¿cómo consigo que el despliegue de imágenes se haga en una Tabla de 2 -columnas- x N -filas-?
<%
For Each objFileItem In objFiles
intFile = intFile +1
If (intFile >= ((intPage-1)*intPageSize)+1) And (intFile =< (intPageSize*intPage)) Then
Response.Write("<tr valign=middle><td width=60 class=gris> </td><td class=gris height=100><img border=0 src=""" & strPhysicalPath & objFileItem.Name & """></td><td width=16> </td><td width=16> </td><td width=16> </td></tr>")%>
<%
End If
Next%>
Gracias,
Emajesus