You can call public methods in your applet from javascript on your form. So, you can write a method in the applet that returns a
string from the field into javascript, and you can write that value in javascript to a hidden html input and it will be available at the next page.
I mean if you have this method in your applet:
public String getFieldValue(){
return myFieldValue;
}
Then in the html page given this:
<input type=hidden name=appletField value="" />
You can make a javascript call to the applet like this:
document.formName.appletField.value = document.appletName.getFieldValue();
I hope this helps.
Julia