JSP: Exemple d’une page JSP avec une Applet

Author:
<html>
<head>
<title> le plugin Java </title>
</head>
<body>
<h1>Applet et utilisation de plugin Java </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>
             Plugin Java désactivé ou inexistant 
  </jsp:fallback>
</jsp:plugin>
 
</body>
</html>
 
 
           
       

Cet article JSP: Exemple d’une page JSP avec une Applet est apparu en premier sur .