Posted By:
evan_seguin
Posted On:
Thursday, February 20, 2003 10:30 AM
Have your applet do a callout to a javascript method on the page that refreshes the page.
Look into the JSObject for more information on how to do this
Posted By:
Daniel_Haas
Posted On:
Tuesday, October 30, 2001 06:23 AM
I only have a simple solution and no big Java solution:
make a Page consisting of two frames, the first shows the Applet and the rest, the second is hidden.
Tell the applet to reload the hidden frame (with the target). In the hidden frame you have a JavaScript that makes something like that:
parent.SecScreen.location.reload();
Simple and easy Solution.