Ver Mensaje Individual
  #5 (permalink)  
Antiguo 19/07/2010, 16:28
Avatar de Potro
Potro
 
Fecha de Ingreso: abril-2001
Mensajes: 2.249
Antigüedad: 23 años, 7 meses
Puntos: 39
Respuesta: Problemas con ajax en servidor

Si te sirve te dejo tu ejemplo con un ajax mas limpio..

**************************************


Código Javascript:
Ver original
  1. var peticion = false;
  2. var  testPasado = false;
  3. try {
  4. peticion = new XMLHttpRequest();
  5. } catch (trymicrosoft) {
  6. try {
  7. peticion = new ActiveXObject("Msxml2.XMLHTTP");
  8. } catch (othermicrosoft) {
  9. try {
  10. peticion = new ActiveXObject("Microsoft.XMLHTTP");
  11. } catch (failed) {
  12. peticion = false;
  13. }
  14. }
  15. }
  16. if (!peticion)
  17. alert("ERROR AL INICIALIZAR!");
  18.  
  19. function FAjax(url,capa,valores) {
  20.  
  21.     var element =  document.getElementById(capa);
  22.  
  23.     fragment_url = url+"?"+valores;
  24.    
  25.     element.innerHTML = 'Cargando...';
  26.     peticion.open("GET", fragment_url);
  27.     peticion.onreadystatechange = function() {
  28.         if (peticion.readyState == 4) {
  29.             element.innerHTML = peticion.responseText;
  30.         }
  31.     }
  32.     peticion.send(null);
  33.  
  34. }


Este setia otro ejemplo de cargar tu div....


NOTA: Ve que los datos los envio por GET ojo...


Saludos y suerte...
__________________
Paginación en FLASH,

http://www.forosdelweb.com/f62/pagin...o-aqui-540241/