What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Retrieving and Displaying Webpages

Retrieving and Displaying Webpages
Author: Message:
deAd
Scripting Contest Winner
*****

Avatar

Posts: 1060
Reputation: 28
– / Male / Flag
Joined: Jan 2006
RE: Retrieving and Displaying Webpages
Do you want the actual page source?

code:
var pRequest = new ActiveXObject('Microsoft.XMLHTTP');
pRequest.open('GET', 'http://www.website.com/page.html', true);
pRequest.onreadystatechange = function() {
     if (pRequest.readyState == 4) {
          var sPage = pRequest.responseText;
          // sPage will contain the contents of the page.
     }
}
pRequest.send('');

This post was edited on 02-09-2007 at 01:25 AM by deAd.
02-09-2007 01:23 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Retrieving and Displaying Webpages - by ScM on 02-08-2007 at 07:33 PM
RE: Retrieving and Displaying Webpages - by roflmao456 on 02-08-2007 at 10:22 PM
RE: Retrieving and Displaying Webpages - by ScM on 02-09-2007 at 01:07 AM
RE: Retrieving and Displaying Webpages - by deAd on 02-09-2007 at 01:23 AM
RE: Retrieving and Displaying Webpages - by ScM on 02-10-2007 at 09:50 AM
RE: Retrieving and Displaying Webpages - by Felu on 02-10-2007 at 09:54 AM
RE: Retrieving and Displaying Webpages - by ScM on 02-10-2007 at 09:56 AM
RE: Retrieving and Displaying Webpages - by ScM on 02-14-2007 at 08:20 AM
RE: Retrieving and Displaying Webpages - by Felu on 02-14-2007 at 11:21 AM
RE: Retrieving and Displaying Webpages - by ScM on 02-15-2007 at 06:12 AM


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