Hey Mentor, the only person I know on this forum that knows AJAX is Nets. Your better just asking him.
Good luck ;)
Printable View
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!Quote:
Originally Posted by Luckyrare
Meh i know a bit of AJAX, but not a lot so I cant really help.
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 :P
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 :P
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 @*/