1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Bienvenue dans la DVDthèque</title>
</head>
<body>
<f:view>
<h:form>
<table width="800" height="800" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<th width="150" height="100" scope="col"><img src="../cinema.jpg" width="150" height="100" /></th>
<th width="650" scope="col"><img width="466" height="105" alt="Application DVDthèque" /></th>
</tr>
<tr>
<td height="650"> </td>
<td>
<br><h:outputText value="#{managedBean_crud.dvd.titre}" /><br><br>
<h:graphicImage url="#{managedBean_crud.dvd.image}" width="240" height="320"></h:graphicImage><br><br>
<object width="200" height="164">
<param name="movie" value="<h:outputText escape='false' value='#{managedBean_crud.dvd.ba}'/>">
<embed src="<h:outputText escape='false' value='#{managedBean_crud.dvd.ba}'/>" type="application/x-shockwave-flash" width="200" height="164"></embed>
</object><br><br>
Titre anglais : <h:outputText value="#{managedBean_crud.dvd.titreen}"/><br>
Acteurs : <h:outputText value="#{managedBean_crud.dvd.acteurs}"/><br>
Réalisateur : <h:outputText value="#{managedBean_crud.dvd.realisateur}"/><br>
Sortie : <h:outputText value="#{managedBean_crud.dvd.annee}"/><br>
Durée : <h:outputText value="#{managedBean_crud.dvd.duree}"/><br>
<br><br><h:outputText value="#{managedBean_crud.dvd.resume}"/><br><br>
<h:commandButton value="Revenir à la liste entière" action="#{managedBean_page.AfficheUnToAfficheAll}"/>
<h:commandButton value="Supprimer ce Dvd" action="#{managedBean_crud.delete}"/>
<br><br>
</td>
</tr>
</table>
</h:form>
</f:view>
</body>
</html> |
Partager