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
| <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!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">
<link rel="stylesheet" type="text/css" href="<s:url value="styles.css"/>" media="all" />
<title>Formulaire de login</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<a href="test.jsp?id=toc">Test ! </a>
<br/>
<s:property value="#parameters.id"/>
<br/>
<s:if test="#parameters['id'].toString() eq toc" >
Eureka ! id = toc
</s:if>
<s:else>
erreur ! id = <s:property value="#parameters.id"/>
</s:else>
<s:debug></s:debug>
</body>
</html> |