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

[Help] Searching pages
Author: Message:
AberNStein
Full Member
***


Posts: 132
Reputation: 2
Joined: Jul 2006
RE: [Help] Searching pages
well you could modify my code
that's why i posted it.

code:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
var YourSite = "http://www.example.com";
var YourData = "";

function getData() {
xmlhttp.open("GET", YourSite, true);
xmlhttp.onreadystatechange = stateChanged;
xmlhttp.send(null);
}

function stateChanged() {
if (xmlhttp.readyState==4)
if (xmlhttp.status==200)
  YourData = xmlhttp.responseText;
}



that's just the bit that grabs the page and puts it into a variable.
you sound like you can parse it yourself.

This post was edited on 08-11-2006 at 09:47 PM by AberNStein.
[Image: gybouserbar6hc.gif]
08-11-2006 09:21 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Help] Searching pages - by Paril on 08-11-2006 at 12:57 PM
RE: [Help] Searching pages - by RaceProUK on 08-11-2006 at 03:35 PM
RE: [Help] Searching pages - by Paril on 08-11-2006 at 03:37 PM
RE: [Help] Searching pages - by AberNStein on 08-11-2006 at 04:34 PM
RE: [Help] Searching pages - by Paril on 08-11-2006 at 05:22 PM
RE: [Help] Searching pages - by Paril on 08-11-2006 at 08:19 PM
RE: [Help] Searching pages - by AberNStein on 08-11-2006 at 09:21 PM
RE: [Help] Searching pages - by J-Thread on 08-11-2006 at 09:23 PM
RE: [Help] Searching pages - by AberNStein on 08-11-2006 at 09:27 PM
RE: [Help] Searching pages - by J-Thread on 08-11-2006 at 09:38 PM
RE: [Help] Searching pages - by Paril on 08-12-2006 at 10:38 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