hform.jsp 679 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <%@ include file="../../upper.jsp" %>
  2. <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
  3. <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
  4. <html>
  5. <body>
  6. <f:view>
  7. <h:form>
  8. <h:inputText value="aaaaaaaaa"/>
  9. </h:form>
  10. <h:outputLink value="http://www.tmaxsoft.com">
  11. <h:outputText value="www.tmaxsoft.com"/>
  12. </h:outputLink>
  13. <br><br><br>
  14. <h:outputLabel for="userId">
  15. <h:outputText id="userId" value="TMAXSOFT"/>
  16. </h:outputLabel>
  17. <br><br><br>
  18. <h:inputTextarea value="TMAXSOFT"/>
  19. <br><br><br>
  20. <h:commandButton value="TMAXSOFT-PUSH" action="/examples/"/>
  21. <br><br><br>
  22. </f:view>
  23. </body>
  24. </html>
  25. <%@ include file="../../footer.html" %>