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.