Wrap this in HTML, BODY and % tags
Dim UserIPAddress
UserIPAddress = Request.ServerVariables(”HTTP_X_FORWARDED_FOR”)
If UserIPAddress = “” Then
UserIPAddress = Request.ServerVariables(”REMOTE_ADDR”)
End If
response.write(UserIPAddress)
Post this on a webserver that you have access to as something.asp, and use that address in the gadget.
August 21, 2007 at 2:41 pm |
Thanks,
Search …. and google found it.
Good reference
Best Regards