Hai,
How do i get values from html text field to applet ?.
What are the different methods available ? , i would like to do this for all the browsers .
Thanks in Advance,
Vineet G.
Printable View
Hai,
How do i get values from html text field to applet ?.
What are the different methods available ? , i would like to do this for all the browsers .
Thanks in Advance,
Vineet G.
In your applet class, (such as from the start() or init() method) call
String astring = applet.getParameter("myParamName");
And use the param tag in your html. As shown at
http://jsp2.java.sun.com/products/pl...docs/tags.html