Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17
  1. #11
    Join Date
    Mar 2005
    Location
    Leeds
    Posts
    3,423
    Tokens
    0

    Latest Awards:

    Default

    Hey Mentor, the only person I know on this forum that knows AJAX is Nets. Your better just asking him.

    Good luck

  2. #12
    Join Date
    Aug 2004
    Location
    UK
    Posts
    11,283
    Tokens
    2,031

    Latest Awards:

    Default

    Quote 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
    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!

  3. #13
    Join Date
    Jun 2005
    Posts
    4,795
    Tokens
    0

    Latest Awards:

    Default

    Meh i know a bit of AJAX, but not a lot so I cant really help.

  4. #14
    Join Date
    Nov 2005
    Posts
    807
    Tokens
    1,335

    Latest Awards:

    Default

    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

  5. #15
    Join Date
    Jun 2005
    Posts
    4,795
    Tokens
    0

    Latest Awards:

    Default

    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){}
    }
    }

  6. #16
    Join Date
    Nov 2005
    Posts
    807
    Tokens
    1,335

    Latest Awards:

    Default

    thats basically what I meant

  7. #17

    Default

    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 @*/

Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •