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 50 51 52
|
<%@ page language="java" pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://displaytag.sf.net" prefix="display" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<html:base />
<title>Liste des clients</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="keywords" content="Keywords here">
<meta name="description" content="Description here">
<meta name="Author" content="ENSI">
<meta name="Publisher" content="ProjetEte">
<meta name="robots" content="index, follow"> <!-- (robot commands: all, none, index, no index, follow, no follow) -->
<meta name="revisit-after" content="30 days">
<meta name="distribution" content="global">
<meta name="rating" content="general">
<meta name="content-language" content="english">
<link href="../css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h3>Liste des clients:</h3><br>
<center>
<display:table name="articlesAcocher" id= "cinCli" cellspacing="2" cellpadding="3"
pagesize="5" class="displaytag">
<display:column property="cinCli" title="CIN" sortable="true"/>
<display:column property="matCli" title="Matricule" sortable="true"/>
<display:column property="nomCli" title="Nom" sortable="true"/>
<display:column property="supprimer" title = ""
href="deleteClient.do?method=DeleteClient?"
paramId="cinCli" paramProperty="cinCli"><%pageContext.getAttribute("cinCli");%>
</display:column>
</display:table>
</center>
</body>
</html:html> |
Partager