Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Is it possible to retrieve & parse HTML?
Message
 
À
11/04/2001 20:13:54
Information générale
Forum:
Visual FoxPro
Catégorie:
Applications Internet
Divers
Thread ID:
00494708
Message ID:
00494710
Vues:
26
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform