window.createRequest(); gonna start studying that one
i insert alert(); functions and it reaches to
i tried Msxml2.XMLHTTP.6.0 but still no result ..Code:function GetXmlHttpObject() { var xmlHttp=null; try { xmlHttp=new XMLHttpRequest(); } catch (e) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); alert('HERE'); //IT REACHES HERE } catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlHttp; }




Reply With Quote