Foros del Web » Programando para Internet » ASP Clásico »

paginacion

Estas en el tema de paginacion en el foro de ASP Clásico en Foros del Web. He leido el articulo de paginacion y no lo entiendo. alguien me puede ayudar a programar la paginacion de 10 en 10 a la siguiente ...
  #1 (permalink)  
Antiguo 24/06/2002, 14:03
 
Fecha de Ingreso: abril-2002
Mensajes: 49
Antigüedad: 22 años, 2 meses
Puntos: 0
paginacion

He leido el articulo de paginacion y no lo entiendo.
alguien me puede ayudar a programar la paginacion de 10 en 10 a la siguiente pagina.?

gracias

PD: esta en dos partes

<html>
<head>
<title>Libro de Visitas</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<%
If Request.Form <> "" Then
Dim DB, TBL
Set DB = Server.CreateObject("ADODB.Connection")
Set TBL = Server.CreateObject("ADODB.RecordSet")
DB.Mode = adModeReadWrite
DB.Open ("PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=" + Server.MapPath("afiliados.mdb"))

TBL.Open "Afiliados" ,DB, 1, 2
TBL.AddNew
TBL("Nombre") = Request.Form("Nombre")
TBL("Apellido") = Request.Form("Apellido")
TBL("Pais") = Request.Form("Pais")
TBL("Mensaje") = Request.Form("Mensaje")
TBL.Update
TBL.Close

DB.Close

Set DB = Nothing
Set TBL = Nothing

Response.Write "<b>Se a agregado sus datos con exito, muchas gracias </b>"
else
%>
  #2 (permalink)  
Antiguo 24/06/2002, 14:05
 
Fecha de Ingreso: abril-2002
Mensajes: 49
Antigüedad: 22 años, 2 meses
Puntos: 0
Re: paginacion

CONTINUACION DEL ANTERIOR----


<b> Agregar Informacion: </b>
<form name="form1" method="post" action="agregar.asp">
<table width="58%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#0000FF" height="116" valign="top">
<table width="589" border="0" cellspacing="1" cellpadding="0" height="139">
<tr bgcolor="#009EEA" valign="top">
<td width="188" height="40"><b><font color="#0099FF">..</font>Nombre:
</b><br>
<font color="#0099FF">. </font>
<input type="text" name="Nombre" maxlength="10">
</td>
<td width="188" height="40"><b><font color="#0099FF">..</font>Apellido:</b><br>
<font color="#0099FF">. </font>
<input type="text" name="Apellido" maxlength="10">
</td>
<td width="209" height="40"><b><font color="#0099FF">..</font>Pais:</b><br>
<font color="#0099FF">. </font>
<input type="text" name="Pais" maxlength="15">
<br>
<br>
</td>
</tr>
<tr bgcolor="#88D9FF">
<td colspan="3" height="43">
<p><b><font color="#99CCFF">..</font>Mensaje</b><br>
<font color="#99CCFF">. </font>
<textarea name="Mensaje" cols="52" rows="5"></textarea>
<input type="submit" name="Submit" value="Enviar">
<input type="reset" name="Submit2" value="Reset">
<br>
. </p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
<%
End If
%>
</body>
</html>
  #3 (permalink)  
Antiguo 24/06/2002, 20:46
Avatar de mamon  
Fecha de Ingreso: enero-2002
Ubicación: Lima
Mensajes: 1.302
Antigüedad: 22 años, 5 meses
Puntos: 3
Re: paginacion

esta paginacion me parece mas fácil de entender...
<a href='ir.asp?http://www.soloasp.com.ar/vereje.asp?eje=30' target='_blank'>http://www.soloasp.com.ar/vereje.asp?eje...</a>

Giancarlo Loret de Mola
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 00:01.