Hey Mentor, the only person I know on this forum that knows AJAX is Nets. Your better just asking him.
Good luck![]()

Hey Mentor, the only person I know on this forum that knows AJAX is Nets. Your better just asking him.
Good luck![]()
true, but he doesnt appear to be online at the moment, so i was hopeing someone else would maybe be able to see the problemo in the mean time.. meh, i usealy end up haveing to spend hours figuering this stuff out, danm lously shortcuts!Originally Posted by Luckyrare
Hey Mentor, the only person I know on this forum that knows AJAX is Nets. Your better just asking him.
Good luck
Hmmm I only know basic ajax but from what I have learned there are two Internet explorer xmlhttprequests which are
new ActiveXObject("Msxml2.XMLHTTP");
and
new ActiveXObject("Microsoft.XMLHTTP");
and as far as i have seen you have only used the second one.. that might work. But this is the most advanced ajax I have ever seen![]()
If this helps heres some code from the AJAX side of my radio panel:
Code:var page_request = false if (window.XMLHttpRequest) page_request = new XMLHttpRequest() else if (window.ActiveXObject){ try { page_request = new ActiveXObject("Msxml2.XMLHTTP") } catch (e){ try{ page_request = new ActiveXObject("Microsoft.XMLHTTP") } catch (e){} } }
thats basically what I meant![]()
Yes it is the ActiveX you should do this.
Code:/* Create a new XMLHttpRequest object to talk to the Web server */ var xmlHttp = false; /*@cc_on @*/ /*@if (@_jscript_version >= 5) try { xmlHttp = new XMLHttpRequest(); if(xmlHttp)alert("otherBrowser"); } catch (trymicrosoft) { try { xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); if(xmlHttp)alert("Msxml2"); } catch (othermicrosoft) { try { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); if(xmlHttp)alert("Microsoft"); } catch (failed) { xmlHttp = false; } } } @end @*/
Want to hide these adverts? Register an account for free!