
03/07/2002, 20:38
|
| | Fecha de Ingreso: mayo-2002
Mensajes: 91
Antigüedad: 23 años Puntos: 0 | |
Re: Puedo tener varios forms dentro de una pagina? segunda parte:
<FONT COLOR="#8080C0">Listado de eventos XXXXX</FONT>
<table border="0" width="100%">
<tr>
<td width="50%" align="center">
<FONT COLOR="#8080C0" ><B>Registros</B></FONT>
<font color="#42BD73" ><B><%=inicio%></B> </font>
<FONT COLOR="#8080C0" ><B>al</B></FONT>
<font color="#42BD73" ><B><%=fin%></B></font>
<FONT COLOR="#8080C0" ><B>de un total de</B></FONT>
<font color="#42BD73" ><B><%=Ob_RS.recordcount%></B></font>
</td>
<td width="50%" align="center">
<FONT COLOR="#8080C0" ><B>Página</B></FONT>
<font color="#42BD73" ><B><%=session("pagina")%> ;</B></font>
<FONT COLOR="#8080C0" ><B>de</B></FONT>
<font color="#42BD73" ><B><%=Ob_RS.pagecount%></B></font>
</td>
</tr>
</table>
<BR>
<div align="center"><center>
<form method="POST" name="seleccionar"align="center&quo t; action="paginauno.asp" >
<table BORDER="1">
<tr>
<th><font face="Arial">EVENTO</font></th>
<th><font face="Arial">MUNICIPIO</font></th>
<th><font face="Arial">FECHA</font></th>
<th><font face="Arial">HORA</font></th>
<th><font face="Arial">IR</font></th>
</tr>
<%
contador=0
Do While contador < Ob_RS.pagesize and NOT Ob_RS.EOF
Xcodeve=Ob_RS("codevento")%>
<tr>
<td><%=Ob_RS("nombreevento")%&g t;</td>
<td><%=Ob_RS("nombremunicipio") %></td>
<td><%=Ob_RS("fchaid")%>/<%=Ob_RS("fchaim")%>/<%=Ob_RS("fchaia")%></td>
<td><%=Ob_RS("hora_inicio")%> ;</td>
<td><INPUT TYPE="radio" NAME="seleccion" value="<%=Xcodeve%>"> <BR></td>
</tr>
<% Ob_RS.MoveNext
contador=contador+1
Loop%>
</table>
<p><INPUT TYPE="submit" VALUE="Mostrar evento" name="B1">
<INPUT TYPE="reset" VALUE="Limpiar" name="B1">
</p>
</form> |