123456789101112131415161718192021222324252627282930313233343536 |
- /* ====================================================================
- * The Tmax soft License, Version 1.1
- *
- * Copyright (c) 1997-2004 The Tmax software.
- * All rights reserved.
- * html code omitted for readability.
- /* ====================================================================
- <%@ include file="../../upper.jsp" %>
- <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
- <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
- <html>
- <body>
- <f:view>
- <fieldset>
- <legend><b><h:commandButton value="PUSH" action="nextPage"/></b></legend>
- <h:commandButton value="PUSH" action="nextPage"/>
- </fieldset>
- <br>
- <fieldset>
- <legend><b><h:graphicImage id="image" alt="jsf-sun" url="/images/home.gif"/></b></legend>
- <h:graphicImage id="image" alt="jsf-sun" url="/images/home.gif"/>
- </fieldset>
- <br>
- </f:view>
- </body>
- </html>
- <%@ include file="../../footer.html" %>
|