Reading a html page source

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Hi,
I need to read data from abot 600 www.pages which are subpages of
one particular page, something like this:

for each SubPage in ParticularSuperWebPage

s as string = readSubPageAsHTMLSource(SubPage.URL)
myInfoResult as string = findInfo(s,myinfo)
file.writeIntoTextFile(myInfoResult)

next SubPage

Can this be done with VB net ? (I assume so)
Could you point me to the assemblies/namespaces where
there is such a function as s as string =
readSubPageAsHTMLSource(SubPage.URL)

Thanks
Tom
 
Hi,
that's me again. Sorry for any putting the problem so broadly.

The whole thing is now done - but I had to locate subpages by
searching for <a href > tags
in subpages source text. I was just curious if there is a direct net
method for iterating over subpages, which I didn't find.

Thanks for interest
Tom
 
Back
Top