Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/02/2007, 12:44
Avatar de stock
stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 2.390
Antigüedad: 19 años, 10 meses
Puntos: 53
Re: Recargar valores lista ajax

eso es por el chache del explorer, necesitas poner las cabeceras necesarias para deshabilitar el cache, algo asi
en JSP
<%
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", 0);
%>

en ASP
<% Response.CacheControl = "no-cache" %>
<% Response.AddHeader "Pragma", "no-cache" %>
<% Response.Expires = -1 %>

en PHP
<?
Header('Cache-Control: no-cache');
Header('Pragma: no-cache');
?>

have funnnnnnnnnnnn