What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [?] xmlhttp POST

[?] xmlhttp POST
Author: Message:
-dt-
Scripting Contest Winner
*****

Avatar
;o

Posts: 1819
Reputation: 74
35 / Male / Flag
Joined: Mar 2004
RE: [?] xmlhttp POST
code:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("POST", url, true);
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xmlhttp.onreadystatechange = function() {
    if (xmlhttp.readyState==4) {
        if(xmlhttp.status == 200){
            //worked                   
        }else{
            //error   
   
        }
    }
}

xmlhttp.send("moo=xxx&cow=eksdf");   

[Image: dt2.0v2.png]      Happy Birthday, WDZ
12-02-2006 06:58 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[?] xmlhttp POST - by Spunky on 12-02-2006 at 06:25 PM
RE: [?] xmlhttp POST - by -dt- on 12-02-2006 at 06:58 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On