PDA

Click to See Complete Forum and Search --> : get user IP address? [Resolved]


ProgrammerJon
Jan 21st, 2004, 12:19 PM
how do you get the IP address of someone who visits your web page?

Memnoch1207
Jan 21st, 2004, 12:42 PM
Response.write(Request.ServerVariables("REMOTE_ADDR"))

hellswraith
Jan 21st, 2004, 02:04 PM
Or this:
Response.Write(Request.UserHostAddress.ToString())

ProgrammerJon
Jan 24th, 2004, 03:56 PM
thanks