JSP and Applet 1 : Collaboration « JSP « Java






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>


           
       








Related examples in the same category

1.JSP and Applet
2.JSTL: work with applet
3.JSP, HTML and SVG (Scaleable Vector Graphics)
4.JSP and Flash page
5.JSP and embedded Wmp
6.JSTL: Flash in a JSP
7.JSP and QuickTime (.mov file)
8.JSP standard actions: JSP and applet
9.JSPs and Servlets
10.JSPs and Servlets 2