30/06/2013, 19:28
|
| | Fecha de Ingreso: julio-2012
Mensajes: 8
Antigüedad: 12 años, 6 meses Puntos: 0 | |
mostrar procesados sin recargar pagina Este seria el codigo para paginas asp:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="../Utilidades/Trazas.asp" -->
<%
sql="select * PADRON"
We=Qselect(MuniA,sql,"MA")
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<%
xx=0
do until MuniA.eof
xx=xx+1
%>
<table border="0" align="center" cellspacing="0" class="Tabla">
<tr>
<th>procesados</th>
</tr>
<tr>
<td><%=xx%></td>
</tr>
</table>
<%
MuniA.movenext
loop
%>
</body>
</html> |