src.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* ====================================================================
  2. * The Tmax soft License, Version 1.1
  3. *
  4. * Copyright (c) 1997-2004 The Tmax software.
  5. * All rights reserved.
  6. * html code omitted for readability.
  7. /* ====================================================================
  8. <%@ include file="../../upper.jsp" %>
  9. <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
  10. <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
  11. <html>
  12. <body>
  13. <f:view>
  14. <fieldset>
  15. <legend><b>&lt;h:outputText value="http://www.tmaxsoft.com"/&gt;</b></legend>
  16. <h:outputText value="http://www.tmaxsoft.com"/>
  17. </fieldset>
  18. <br>
  19. <fieldset>
  20. <legend><b><b>&lt;h:outputLink value="http://www.tmaxsoft.com"&gt;...</b></legend>
  21. <h:outputLink value="http://www.tmaxsoft.com"> <h:outputText value="http://www.tmaxsoft.com"/> </h:outputLink>
  22. </fieldset>
  23. <br>
  24. <fieldset>
  25. <legend><b>&lt;h:outputFormat value="http://www.{0}.com"&gt; &lt;f:param value="tmaxsoft"/&gt;...</b></legend>
  26. <h:outputFormat value="http://www.{0}.com"> <f:param value="tmaxsoft"/> </h:outputFormat>
  27. </fieldset>
  28. </f:view>
  29. </body>
  30. </html>
  31. <%@ include file="../../footer.html" %>