The trickiest part of this is actually getting the remote URL.
First question: are you trying to do this with server-side VBScript (as part of the ASP page), or client-side VBScript (generated by the ASP page)? I'm going to assume that you're talking about server-side stuff.
I'm not really familiar with ASP, so I had to do some digging on this. From what I can tell, you can't actually do this with VBScript alone; you have to use an ActiveX control.
WebConcerns.co.uk has an article on this.[/url] Note that contrary to what the article says, you really
are using an ActiveX control: it just happens to be built into the system. In fact, if you've ever written any AJAX, it should seem familiar: it's the ActiveX control off of which the de-facto standard XmlHttpRequest API (now in Mozila, Opera, Safari, and slated for IE/Windows 7.0) was based.
When you read in the URL, by default all you get is a string containing the test of the HTML page. You'll still have to parse it out and print it yourself. However, this works just as it would for any other string of text.