Hi all,
Not sure if this is the right place to put this
I have a
applet. Bellow is its init method
Public void init(){
Frame1 f1 = new Frame1();
}
This is all this applet does. The Frame class is a class that extends JFrame. Now if I sing the applet and distribute the jar file my Frame class can act like a normal
java application that is running on the machine thought it was invoked by a applet
Am I right?
If yes good
If no please tell me why
If I have a JButton in my frame after clicking the button I want to call a
JSP page.
This JSP page must invoke a
servlet.
How can I do this?
Thanks a lot