I have a question about IP Addresses.
Could I get one and display it on my
webpage of the user??
Thankyou!
PS.. COuld I have the code
Printable View
I have a question about IP Addresses.
Could I get one and display it on my
webpage of the user??
Thankyou!
PS.. COuld I have the code
Id imagine its possible. Youd probably have to use VBScript. Try using winsock to do it. Im not to familiar with VBScript but im almost 100% sure you could do it.
Hope that helps
Glenn Harwood
If i'm not mistaken, you can only retreive the Internet IP Address using CGI Scripts located on your server. If you are refering to the IP address of the actual computer as part of an internal LAN, you can get it using VB. But as you are not making a program in VB, I don't know.
Regards,
use this ASP code to display the IP address of the client. (NOTE: Need Active Server Pages)
Code:<%
response.write Request.ServerVariables("REMOTE_ADDR")
%>