java intern
September 22nd, 1999, 03:55 PM
I am working on a project where I have to send several values from 1 applet to another applet on a separate page. I have been able to send a single value using this code:
getAppletContext().showDocument(new URL(getCodeBase(),"java2html.html?" +
"message=" + URLEncoder.encode(labelPercentage.getText())));
but haven't been successful sending 2 or more values. Can anyone give me any suggestions? Thanks
getAppletContext().showDocument(new URL(getCodeBase(),"java2html.html?" +
"message=" + URLEncoder.encode(labelPercentage.getText())));
but haven't been successful sending 2 or more values. Can anyone give me any suggestions? Thanks