JSP CUSTOM TAG LIBRARIES


Examples: validatesummary tag
<domino:form action="setup.jsp">

<domino:validatesummary caption="Please correct these errors and re-submit:<BR>"/>

<domino:input name="theName"/>

<domino:validatelength name="theName" min="2" max="20" message="<B>Length is invalid</B>" style="color=RED;">*</domino:validatelength>

<domino:input name="pw" type="password"/>

<domino:input name="pw2 type="password"/>

<domino:validatewith name="pw2" otherfield="pw" operation="EQ" message="<B>Passwords must match!</B>" style="color=RED;"></domino:validatewith>

</domino:form>

See Also