Shoutbox

[HELP]Sending information to a website. - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [HELP]Sending information to a website. (/showthread.php?tid=63726)

[HELP]Sending information to a website. by Felu on 07-21-2006 at 10:07 AM

How can i send information from a script to a website. I mean to say that entering ursername and password in a site to login using a script. How can it be done.
I know Gmail Checker does it but i cant find out how from the code.


RE: [HELP]Sending information to a website. by RaceProUK on 07-21-2006 at 10:12 AM

You'll need to look into how you can send HTTP GETs and POSTs from JScript.


RE: [HELP]Sending information to a website. by Veggie on 07-21-2006 at 10:14 AM

This is a GET request

quote:
Originally posted by -dt-
To use send data to websites you use XMLHttpRequest

code:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET", "http://shoutbox.menthix.net", true);

    xmlhttp.onreadystatechange=function() {
          if (xmlhttp.readyState==4) {
              Debug.Trace(xmlhttp.responseText);
          }
         }
xmlhttp.send('');




:P that will print msghelp.net's html to your debug console


RE: [HELP]Sending information to a website. by RaceProUK on 07-21-2006 at 10:25 AM

The HTTP RFC. Put simply, everything you need to know (and don't need to know) about the HTTP specification.

Edit: This is the plain text version. The HTML one is probably easier to use though.