I have a JFrame with submit button and a Texfield value
when user clicks on jbutton I want that the applet sends the data of the textfield to other page.
how can I do that?
can you help me?
Printable View
I have a JFrame with submit button and a Texfield value
when user clicks on jbutton I want that the applet sends the data of the textfield to other page.
how can I do that?
can you help me?
Your applet can do communications only with the server from which it is served.
You could use Socket or URLConnection for the communications.