hola intente de esta forma pero no logro ver nada en pantalla que sera qeu estoy haciendo mal..
esta pagina la llamo principal.asp
Código HTML:
Ver original<html xmlns="[URL]http://www.w3.org/1999/xhtml[/URL]"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript"> function peticionAjax(urlPeticion) {
var res = '';
var ajax = false;
try {
ajax = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
ajax = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
ajax = false;
}
}
if (!ajax && typeof XMLHttpRequest != 'undefined') {
ajax = new XMLHttpRequest();
}
var url = urlPeticion;
ajax.open("POST", url, false);
ajax.setRequestHeader('Content-Type',
'application/x-www-form-urlencoded; charset=UTF-8');
ajax.onreadystatechange = function() {
if (ajax.readyState == 4) {
var res = ajax.responseText;
var xhr_data = res.substring(res.indexOf('<etiquetaElementoXML>'), res.indexOf('</etiquetaElementoXML>'));
xhr_data = xhr_data.substring(xhr_data.indexOf('>'), xhr_data.indexOf('</'));
if (!isNaN(xhr_data)) {
document.getElementById('idContador').value=xhr_data;
}
setTimeout( function() { peticionAjax(url);}, 5000);
}
}
ajax.send();
}
setTimeout(function() { peticionAjax("contador.asp?nocache=<%=now()%>"); }, 5000);
esta pagina la llamo contador.asp
Código HTML:
Ver original<?xml version="1.0"?>
<numeroRegistros>
<etiquetaElementoXML>6</etiquetaElementoXML>
</numeroRegistros>