TheWizardofInt
Well-known member
I want to show the IP address of people visiting my site.
I tried this:
But that shows the IP address OF my site
I tried this:
Code:
Private Sub GetIp()
Dim sString As String
sString = System.Net.Dns.Resolve(System.Net.Dns.GetHostName()).AddressList(0).ToString()
lblIP.Text = sString
End Sub
But that shows the IP address OF my site