previous
|
index
|
next
Applet Example
Here is a simple applet source file:
FooApplet.java
Here is a JSP that uses it:
AppletExample.jsp
The JSP and the applet class file must both be in the base directory.
Here is the URL:
http://redrock.d.umn.edu:8082/jspbook/AppletExample.jsp
Remember: JSPs run on the server side, applets on the client side.
Loading an applet results in 2 separate requests:
The request to load the JSP, and
The request to load the applet.
previous
|
index
|
next