Hi
I was recently told that an
applet can communicate with an html form. For example it can take info from a user in and pass it to a
servlet through the html form. Can anyone show me some code!!!
The applet (i'm guessing) would be embedded in the form tags?
<form>
<applet
codebase = "."
code = "applettest.first.class"
name = "TestApplet"
width = "400"
height = "300"
hspace = "0"
vspace = "0"
align = "middle"
>
</applet>
</form>
but the communication btwn the three things I'm lost. I have working servlets and beans (post/get)