Hello, I thought, in JSP, when i write <h:form id="blabla"> <div><h:outputText value="test"/></div> </h:form>
I would get something like this <FORM> ... <div> .... test ... </div> ... </FORM> that is, the content of outputText "test" is placed at same position of corresponding tag. However, running such a JSP, is get the following output <FORM> ...test... <div></div> ... </FORM> That is, the outputText is rendered immediatly inside the h:form, and not where is was designed in the JSP, is there a reason for this? Am i forbidden to use html tags inside an h:form?? Is that a bug?

