cbateman | 47b8819 | 2006-07-26 05:15:22 +0000 | [diff] [blame^] | 1 | <%@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 | <h1>JSP Page</h1> |
| 19 | <!-- no errors --> |
| 20 | <f:selectItems value="#{myBean.property}"/> |
| 21 | </f:view> |
| 22 | </body> |
| 23 | </html> |