users IP Address
4
Using ASP or Active Server Pages it is actually quite easy to retrieve a users IP Address
<%
Dim UserIPAddress
UserIPAddress = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
If UserIPAddress = "" Then
sIPAddress = Request.ServerVariables("REMOTE_ADDR")
End If
%>






There are currently no comments for this snippet.