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
| <?xml version="1.0" encoding="utf-8" ?>
<jsp:root version="1.2"
xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ice="http://www.icesoft.com/icefaces/component">
<jsp:directive.page contentType="text/html;charset=utf-8" />
<f:view>
<ice:outputDeclaration doctypeRoot="HTML"
doctypePublic="-//W3C//DTD HTML 4.01 Transitional//EN"
doctypeSystem="http://www.w3.org/TR/html4/loose.dtd" />
<html>
<head>
<title>
<ice:outputText value="ICEfaces, Ajax for Java EE" />
</title>
<ice:outputStyle href="./xmlhttp/css/royale/royale.css" />
</head>
<body>
<ice:outputText value="Welcome to ICEfaces." />
<ice:form>
<ice:messages/>
</ice:form>
</body>
</html>
</f:view>
</jsp:root> |
Partager