What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [HELP]Sending information to a website.

[HELP]Sending information to a website.
Author: Message:
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
O.P. [HELP]Sending information to a website.
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.
07-21-2006 10:07 AM
Profile E-Mail PM Web Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: [HELP]Sending information to a website.
You'll need to look into how you can send HTTP GETs and POSTs from JScript.
[Image: spartaafk.png]
07-21-2006 10:12 AM
Profile PM Web Find Quote Report
Veggie
Full Member
***

Avatar

Posts: 415
Reputation: 21
37 / Male / Flag
Joined: Sep 2004
RE: [HELP]Sending information to a website.
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

07-21-2006 10:14 AM
Profile E-Mail PM Web Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: [HELP]Sending information to a website.
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.

This post was edited on 07-21-2006 at 10:26 AM by RaceProUK.
[Image: spartaafk.png]
07-21-2006 10:25 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »


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