|
|
How to retrieve the TRUE IP address in ASP |
|
|
Ray Gap |
|
|
ASP / Miscellaneous |
|
|
Click to Visit |
|
|
46 |
This tutorial covers on fetching the exact client IP address. Here the author explains that using Request.ServerVariables("REMOTE_ADDR") can only bring the IP address of the proxy server. So the author finally decided to use Request.ServerVariable("HTTP_X_FORWARDED_FOR") to collect the true IP addresses of the client server.
|