-
Hi everybody.
If I have a computer connected to internet via a dial up connection,
Somebody knows how to get that computer ip address from within my vb app?
Note the vb app is running on the same computer I have connected to internet via dial up.
I will greatly appreciate any code example, link to related info, etc.
[email protected]
-
Code:
UserIP = Request.ServerVariables("remote_addr")
-
Getting the ip address
thank you very much,
but I am looking for the Visual Basic code to get the computer ip address on wich is the VB application running.
Do you know how?
-
check out planetsourcecode.com
-
Getting the ip address
Thanks a lot Kovan, I will follow the link right now!
Thanks again!
-
Once you have dialed into your ISP and been assigned an address, I would think that Winsock.LocalIP would return the IP address.
-
Getting the ip address
Thanks a lot, now i am trying this.