Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Screen Scraping

Status
Not open for further replies.

SYBRANDS

Programmer
Sep 18, 2000
1
ZA
I need to get a string from a website , the site is located on a secure server , when logged on the server creates a session number , I need to capture that number , all the links on the page have it in there url shotcut !

Any suggestions welcome
 
Try using the Internet Transfer Control (MSINET.ocx) in the Project Components list. If you named the ITC Inet1, for instance, you could do the following.
strRawText = Inet1.OpenURL("This will return the website in the form of raw html text and set it to the specified string variable strRawText. From there, you can search the string for some indicator of the session number and pull the desired info out of the string.
Hope that helps

Joe [sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top