Do you want to know what the IP address is of someone visiting your site?
Your IP Address is:
38.107.191.111
The code in C# looks like this:
string ipadd = Request.ServerVariables["REMOTE_ADDR"];
Here is the code in VB:
Dim ip As String = Request.ServerVariables("REMOTE_ADDR")