1234567891011121314151617181920212223242526272829 |
- <%@ 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:outputText value="http://www.tmaxsoft.com"/></b></legend>
- <h:outputText value="http://www.tmaxsoft.com"/>
- </fieldset>
- <br>
- <fieldset>
- <legend><b><b><h:outputLink value="http://www.tmaxsoft.com">...</b></legend>
- <h:outputLink value="http://www.tmaxsoft.com"> <h:outputText value="http://www.tmaxsoft.com"/> </h:outputLink>
- </fieldset>
- <br>
- <fieldset>
- <legend><b><h:outputFormat value="http://www.{0}.com"> <f:param value="tmaxsoft"/>...</b></legend>
- <h:outputFormat value="http://www.{0}.com"> <f:param value="tmaxsoft"/> </h:outputFormat>
- </fieldset>
- </f:view>
- </body>
- </html>
- <%@ include file="../../footer.html" %>
|