Passing parameter to the Java Applet
Hi..
Is there any other way to passing parameter from JavaScript/HTML to the Java Applet program rather than with Java Servlet?
Thanks a lot...
[161 byte] By [
ekosa] at [2007-11-18 17:18:14]

# 1 Re: Passing parameter to the Java Applet
You can not use JavaScript or HTML to pass parameter to JAVA Applet...instead you can use ASP or JSP pages
arza at 2007-11-8 0:19:07 >

# 2 Re: Passing parameter to the Java Applet
No you can - and it is relatively eazy.
[code]
<APPLET CODE="/openstudio/xxx.class" WIDTH="100" HEIGHT="100">
<PARAM NAME=backGroundColor VALUE="FFFF00">
</APPLET>
[code]
Learn more on www.sun.com
BUT remember that an Applet runs on the client machine only.
jdt at 2007-11-8 0:20:09 >
