Hmm.. I fiddled around with it and the previous one works fine:

code:
break on
$URL = 'http://www.yahoo.com'
$ie = createobject("internetexplorer.application")
$ie.navigate($URL)
while $ie.readystate <> 4 and $ie.busy and @error = 0 loop
while $ie.document.readystate <> "complete" and @error = 0 loop
$html = $ie.document.documentelement.innerhtml

$html does include the complete text of the file. However, I think there is another way to do this other than using IE or the winhttp.... i'm looking into it.

Brian