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
| <%@ page language="java" %>
<%@ taglib uri="/Web Content/WEB-INF/struts-nested.tld" prefix="nested"%>
<%@ taglib uri="/Web Content/WEB-INF/struts-logic.tld" prefix="logic"%>
<%@ taglib uri="/Web Content/WEB-INF/struts-html.tld" prefix="html"%>
<%@ taglib uri="/Web Content/WEB-INF/struts-bean.tld" prefix="bean"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<title>Gérer une commande</title>
<meta http-equiv="Content-Type" content="text/HTML; charset=utf-8"/>
</head>
<body>
<h2>TEST I18N ET STRUTS</h2><br>
<html:form action="/test04/test04_01.do" >
Nombre formaté : <bean:write name="Test04_01_Form" property="nombre" formatKey="ressources01.formatMontant" bundle="res01" /> <br>
Date formatée : <bean:write name="Test04_01_Form" property="date" formatKey="ressources01.formatDate" bundle="res01" />
<br><br>
</html:form>
</body>
</html> |