My print application has to get the client name and then print the documents. How to find this in java script or jsp? I searched here. Some are discussing on PHP and so? Somethi
You can't do it with Javascript. Try building a Java applet and:
java.net.InetAddress i = java.net.InetAddress.getLocalHost(); System.out.println(i.getHostName());