get (as example) a phone number out of the 'Source code' of a site?

Dimike

New member
Joined
Sep 5, 2008
Messages
1
Programming Experience
1-3
Hi,

Does anyone know a function to get something from the source code of an internet site like a person's name and phone number, and get it in 'textbox1.text' for example?

I'm just a starting programmer, not that I'm skilled, I'm just starting my 2nd year of working with .NET.

Greetz Dimi
 
If the phone number is a literal in the source code, I'd recommend trying some regex search. If it's in the settings file, you'll have to locate it (in the user's profile somewhere) and simply find the entry. It in XML so getting it out should be simple.
 
Back
Top