View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norie Norie is offline
external usenet poster
 
Posts: 82
Default New Q to old Post: Stuck at Trying to Extract Data from a Websiteusing JSP

Herbert

Take a look at innerHTML or outerHTML.

Perhaps something like this.

MsgBox doc.getelementsbytagname("HTML")(0).innerhtml

By the way what is it you actually want to do in the other thread?

If for example you want to get every SCRIPT element.

For Each scr In doc.getelementsbytagname("SCRIPT")
MsgBox scr.innerhtml
Next scr