Code: Select all
Procedure.s DownloadHTML(url$)
#INTERNET_FLAG_RELOAD=$80000000
hInet=InternetOpen_(url$,1,0,0,0)
If hInet
hURL=InternetOpenUrl_(hInet,url$,0,0,#INTERNET_FLAG_RELOAD,0)
If hURL
html$=Space(256)
If InternetReadFile_(hURL,@html$,Len(html$),@bytes)
html$=Trim(html$)
EndIf
EndIf
InternetCloseHandle_(hInet)
EndIf
ProcedureReturn html$
EndProcedure