querying for user ip...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i need to track my visitors ip over the internet and stored them in the db. any method out there which i can use?


thanks in advance.
 
How about Request.UserHostAddress?

--

Claudio Rivera, MCP, MCAD, MCSD, MCDBA, MCT
San Juan, PR


smen said:
i need to track my visitors ip over the internet and stored them in the
db. any method out there which i can use?
 
klod said:
How about Request.UserHostAddress?

--

Claudio Rivera, MCP, MCAD, MCSD, MCDBA, MCT
San Juan, PR



db. any method out there which i can use?

Request.UserHostAddress will get you the IP address which is connecting to
you. But the chances are that will be the address of a firewall, proxy
server or NAT box. You may not find those addresses very useful.
 
Back
Top