Code source :
et code de la page JSP :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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 <head> <link rel="stylesheet" href="/ECommerce/config/default.css" type="text/css"><script type="text/javascript">var imgsrc="/ECommerce/config/"; var scriptsrc="/ECommerce/config/"; var langue="fr"; var contextPath="/ECommerce";</script><script type="text/javascript" src="/ECommerce/config/javascript.js"></script> </head> <table cellspacing="0" cellpadding="0" border="0" align="left" class="FORM"><tr><td valign="top"><table cellspacing="1" cellpadding="1" border="0" width="100%"> <tr valign="top"><th class="FORM"></th><th class="FORM"></th></tr> <tr><td class="FORM"> <img src="img/peugeot_407_coupe.jpg" height="100" width="130"> </td> <td class="FORM">Peugeot</td> <td class="FORM">407 coupé</td> <td class="FORM"> <a href="/ECommerce/ajoutVoiturePanier.do?id=1">Ajouter à mon panier</a> </td> </tr> <tr><td class="FORM"> <img src="img/renault-megane.jpg" height="100" width="130"> </td> <td class="FORM">Renault</td> <td class="FORM">Mégane</td> <td class="FORM"> <a href="/ECommerce/ajoutVoiturePanier.do?id=2">Ajouter à mon panier</a> </td> </tr></table></td></tr></table> <table border="0" cellspacing="1" cellpadding="1" class="PAGER""><tr> <td width="50%" style="text-align : right" class='PAGER'></td> <td class='PAGER'>1 <a href="/ECommerce/sort.do?layoutCollection=0&pagerPage=1" class="PAGER">2</a> <a href="/ECommerce/sort.do?layoutCollection=0&pagerPage=2" class="PAGER">3</a> </td> <td width="50%" style="text-align : left" class='PAGER'><a href="/ECommerce/sort.do?layoutCollection=0&pagerPage=1">>></a></td> </tr></table>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 <%@ taglib uri="/WEB-INF/struts-layout.tld" prefix="layout" %> <head> <layout:skin includeScript="true"/> </head> <layout:pager maxPageItems="2" styleClass="PAGER"> <layout:collection name="listVoiture" id="voiture" align="left" styleClass="FORM"> <layout:collectionItem title=""> <layout:img src="${voiture.photo}" width="130" height="100"/> </layout:collectionItem> <layout:collectionItem property="marque"/> <layout:collectionItem property="modele"/> <layout:collectionItem title=""> <layout:link action="/ajoutVoiturePanier" paramName="voiture" paramId="id" paramProperty="id">Ajouter à mon panier</layout:link> </layout:collectionItem> </layout:collection> </layout:pager>







Répondre avec citation







Partager