
28/09/2006, 16:20
|
| | Fecha de Ingreso: septiembre-2006
Mensajes: 161
Antigüedad: 18 años, 7 meses Puntos: 0 | |
espero te sirva!!! ***espero te sirva!!!...pone una tabla...y va poniendo en cada campo los datos que le indicas de tu bd!!!
***`CREAS TU TABLA, LOS CAMPOS Y NOMBRE DE LOS CAMPOS
<table width="760" height="62" border="1" align="center" bordercolor="#333333" bgcolor="#FFFFFF">
<tr align="center" bgcolor="#F4F4F4">
<th width="150" height="32" valign="middle" bordercolor="#FFFFFF" bgcolor="#999999" scope="col"><div align="center" class="Estilo12">CODIGO</div></th>
<th width="300" bordercolor="#FFFFFF" bgcolor="#999999" scope="col"><div align="center" class="Estilo5 Estilo4"><strong>NOMBRE</strong></div></th>
<th width="155" bordercolor="#FFFFFF" bgcolor="#999999" scope="col"><div align="center" class="Estilo12">TIPO DE EQUIPO </div></th>
<th width="155" bordercolor="#FFFFFF" bgcolor="#999999" scope="col"><div align="center" class="Estilo12">CANTIDAD</div></th>
<%
'
**ESTO ES LO QUE MANDAS LLAMAR DE TU BD (EN ESTE CASO ES SQL)
do while not rsTest.EOF%>
<tr bgcolor="#F4F4F4">
<td width="150" height="22"><div align="center" class="Estilo4"><%=rsTest("CODIGO")%></div></td>
<td width="300"><div align="center" class="Estilo4"><%=rsTest("NOMBRE")%></div></td>
<td width="155"><div align="center" class="Estilo4"><%=rsTest("TIPO")%></div></td>
<td width="155"><div align="center" class="Estilo4"><%=rsTest("CANTIDAD") %> </div></td>
</tr>
<% rsTest.MoveNext
loop%>
</table> |