JSP and Applet 1
<html> <head> <title>Using the Java Plugin</title> </head> <body> <h1>Applet running in the plugin</h1> <jsp:plugin type="applet" code="BasicApplet.class" width="90%" height="100"> <jsp:params> <jsp:param name="text" value="Hello from the applet"/> </jsp:params> <jsp:fallback> Your browser can't display this applet. Sorry </jsp:fallback> </jsp:plugin> </body> </html>