Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/04/2008, 15:12
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 6 meses
Puntos: 2135
Re: Ajax.Updater de Prototype

Hola Unxky28,

El problema es que IE tiende a hacer Catching en las URL a la hora de actualizar, prueba agregando un parámetro extra a tu update:
Código:
var oOptions = {
                    method: "GET",
                parameters: { rand: Math.Random() },                                                                    
                 onFailure: function (oXHR, oJson) {
                    alert("An error occurred: " + oXHR.status);
                }
            };
Saludos.