0 Replies Latest reply on Feb 25, 2010 7:16 PM by maggi

    JSP seam 2.2

    maggi
      Hi,

      I am trying to run following jsp using seam 2.2. JSP shows error at <h:form>. Can anyone please help?
      I have referred seam 1.1 documentation at http://docs.jboss.org/seam/1.1.6.GA/reference/en/html/tutorial.html showing sample jsp. I hope these jsp should work in 2.2. If not what is the best sample jsp which works in seam 2.2


      <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
      <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>

      <html>
      <head>
        <title>Register New User</title>
      </head>
      <body> Hi there

        <h:form>
          other JavaServer Faces tags and core tags,
          including one or more button or hyperlink components for
          submitting the form
        </h:form>

      </body>
      </html>