i am new in java applet …
where can i learn more about java applet (related to asp.net) and is it possible to use java applet in asp.net without installing java run time ?
mean is there a library for java on the net that we can refer it ?
(how ?)
for example how can i use below java applet codes without forcing my users to install some thing on their machines?
How to find client computer name in java script/jsp?
mean Júlio Santos answer
thanks in advance
The example you mentioned uses ActiveX (built into IE) and JScript (also built into IE). You do not need the Java Virtual Machine to be installed for that.
In general, running a Java Applet in ASP.NET does not make sense because Applets are client side (they run in the browser) while ASP.NET is (mainly) server side. You can use IKVM to compile the Applet into something .NET understands but that basically gives you access to its public methods which may or may not help depending on your use case.
Here’s how you can have IE auto install the JVM runtime: http://java.sun.com/developer/technicalArticles/JavaLP/javawebstart/AutoInstall.html