Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/05/2006, 22:43
osvf
 
Fecha de Ingreso: mayo-2006
Mensajes: 2
Antigüedad: 18 años
Puntos: 0
Sonrisa No uses xmlhttp.onreadystatechange

A ver que te parece esto, a mi me dio resultado:

xmlhttp.open("GET", sURL, false);
xmlhttp.send(null);

if((xmlhttp.readyState == 4) && (xmlhttp.status == 200))
oDiv.innerHTML = xmlhttp.responseText;

Espero te sirva, si no has resuelto el problema ya

Última edición por osvf; 11/06/2006 a las 16:56