Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is it possible to retrieve & parse HTML?
Message
 
To
11/04/2001 20:13:54
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00494708
Message ID:
00494710
Views:
25
Try this:
local loIE
local lcWebPage
local lcPageContent

loIE=createobject("InternetExplorer.Application")
loIE.Visible=.T.

lcWebPage="http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?ViewItem&item=1229092471"
loIE.Navigate(lcWebPage)
do while loIE.ReadyState<>4
  wait window "Waiting for webpage..." timeout 1
enddo

lcPageContent=loIE.Document.Body.InnerHTML
--Brad
Previous
Reply
Map
View

Click here to load this message in the networking platform