 
			
				29/01/2008, 15:39
			
			
			     |  
      |    |    |    Fecha de Ingreso: enero-2008  
						Mensajes: 1
					  Antigüedad: 17 años, 9 meses Puntos: 0     |        |  
  |      Re: Problema ajax i.explorer 7        Hola, yo tuve el mismo problema con el IE7 
Cambia tu código para inicializar tu objeto por el siguiente y asunto arreglado!!   
if(typeof XMLHttpRequest!='undefined') 
    objAjax=new XMLHttpRequest(); 
else if(typeof ActiveXObject!='undefined') 
    objAjax=(Number(navigator.appVersion.substr(0,3))>  =5)? new ActiveXObject('Msxml2.XMLHTTP'):new ActiveXObject('Microsoft.XMLHTTP'); 
if(this.objAjax==null) 
    alert(":(");           |