java applets and jsp
I have an applet for example
<applet height="50" width="500" archive="applets.jar" codebase="applets/" code="MyApplet.class" name="MyApplet">
<param name="param1" value="data1"/>
</applet>
I want the applet to manipulate the parameter param1 which is fine.
String strData = getParameter("param1");
now I want to return a result so that I can use it in the jsp page. Does anyone know how you go about this. There isn't a setParameter for example.
Thanks,

