blob: aba64ef991122e81eb2105d272aaa287f826de9b [file] [log] [blame]
cbatemanf5842db2006-07-28 21:08:50 +00001<%@page contentType="text/html"%>
2<%@page pageEncoding="UTF-8"%>
3
4<%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
5<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
6
7
8<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
9 "http://www.w3.org/TR/html4/loose.dtd">
10
11<html>
12 <head>
13 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
14 <title>JSP Page</title>
15 </head>
16 <body>
17 <f:view>
18 <f:loadBundle basename="bundles.bundle1" var="bundle1"/>
19 <h1>JSP Page</h1>
20 <!-- no errors -->
21 <h:outputText value="#{bundle1.}"/>
22 <h:outputText value="#{bundle1.x}"/>
23 </f:view>
24 </body>
25</html>