Java Tutorial/JSP/Plugin

Материал из Java эксперт
Перейти к: навигация, поиск

Jsp:plugin applet and Jsp:fallback

   <source lang="java">

<html>

<title> Plugin example </title> <body bgcolor="white">

Current time is :

<jsp:plugin type="applet" code="YourApplet.class" codebase="applet" jreversion="1.2" width="160" height="150" >

   <jsp:fallback>
       Plugin tag OBJECT or EMBED not supported by browser.
   </jsp:fallback>

</jsp:plugin>

The above applet is loaded using the Java Plugin from a jsp page using the plugin tag.

</body> </html></source>