JSP and embedded Wmp : Collaboration « JSP « Java






JSP and embedded Wmp

<%@ taglib uri="http://java.sun.com/jstl/core" prefix="rt_c" %>

<jsp:useBean id="date" class="java.util.Date" />

<html>
<head><title>Windows Media in a JSP</title></head>
<body>
<h2>The Who</h2>

<OBJECT CLASSID=
    "clsid:22D6f312-B0F6-11D0-94AB-0080C74C7E95"
CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#version=6,4,7,1112">

<PARAM name="autoStart" VALUE="true">

<PARAM name="URL" VALUE="http://localhost:8080/home/faithhill_yourestillhere_56-v[1].asx">

<!-- <EMBED SRC=
   "http://www.parkerriver.com/films/who_baba.mov" WIDTH="240" HEIGHT="196" 
    AUTOPLAY="true" CONTROLLER=
    "true" PLUGINSPAGE="http://www.apple.com/quicktime/download/">

</EMBED> -->

</OBJECT>

<br /><rt_c:out value="${date}"/>

</body>
</html>


           
       








Related examples in the same category

1.JSP and Applet 1
2.JSP and Applet
3.JSTL: work with applet
4.JSP, HTML and SVG (Scaleable Vector Graphics)
5.JSP and Flash page
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