Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/07/2010, 17:32
Avatar de Potro
Potro
 
Fecha de Ingreso: abril-2001
Mensajes: 2.249
Antigüedad: 23 años
Puntos: 39
Respuesta: Hace lo que quieres.

Veo que tienes una pagina de header pero si estas poniendo bien todos los requeridos..

Código PHP:
Ver original
  1. // Fecha en el pasado
  2. header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
  3. // siempre modificado
  4. header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
  5. // HTTP/1.1
  6. header("Cache-Control: no-store, no-cache, must-revalidate");
  7. header("Cache-Control: post-check=0, pre-check=0", false);
  8. // HTTP/1.0
  9. header("Pragma: no-cache");



Tambien la forma de construir tu ajax.. yo uso lo siguiente..



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!");
__________________
Paginación en FLASH,

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