getting results from another html page

  • Thread starter Thread starter Michael Jean
  • Start date Start date
M

Michael Jean

hello,

i am building some objects to keep track of page
statistics (ie, pages visited by certain ip addresses) so
that i can see which countries my visitors are coming
from. i am using a free php service to determine the
location of an ip address.. for example, if i want to
find ip 1.2.3.4's country, i go to
http://www.myservice.xxx/findip.php?ip=1.2.3.4 and it
will spit back "united states" or "canada" or whatever..

how can i call this from inside an asp.net page to get
the result? for example,

Dim strClientIPAddress as String
Dim strCountry as String

strCountry = SomehowEvaluate("http://.../findip.php?ip="
& strClientIPAddress)

any help will be greatly appreciated!

mike
 
Back
Top