Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/06/2013, 19:28
fabiandm
 
Fecha de Ingreso: julio-2012
Mensajes: 8
Antigüedad: 11 años, 9 meses
Puntos: 0
Pregunta 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>