How do I display the local IP address of a computer on a web page?
-
I would like to create a link on our Intranet that will display the local IP address for a given users workstation. The user would be able to click on this link and tell me on the telephone what his/her IP is. I would like this displayed in a web page and not as a popup. This would be easier than the Start, Run, CMD, IPCONFIG routine that we make them do now. Thanks!
-
Answer:
1. Create a new page 2. Save it with the extension asp (for example index.asp) 3. Add this code: <% Response.write "Your IP address is: " sIP = request.servervariables("Remote_Addr") Response.write sIP %> 4. Save the page and open in your browser. Assumes you are hosting the page on a server that supports server side VbScript such as IIS
carlsbl1... at Yahoo! Answers Visit the source
Other answers
You can do this with Javascript: <SCRIPT> var ip = new java.net.InetAddress.getLocalHost(); var ipStr = new java.lang.String(ip); document.writeln(ipStr.substring(ipStr… </SCRIPT>
melvinschmugmeier
Related Q & A:
- How do I display my new Yahoo name within a group?Best solution by answers.yahoo.com
- How do I put pictures from an iPod onto a computer?Best solution by Yahoo! Answers
- How can I watch Youtube on my psp without a computer or usb cord?Best solution by Yahoo! Answers
- How can I print wirelessly from a laptop to a printer without a router?Best solution by answers.yahoo.com
- How can I record directly from a keyboard onto a computer?Best solution by eHow old
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.