...
The framework comes packaged with a tag library (taglibs) that make it easy to reference framework resources from JavaServer Pages.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<%@ taglib prefix="saf" uri="/action" %> <html> <head> <title>Cookbook - Simple Input Form using Action Properties</title> <saf:head/> </head> <body> <saf:form method="POST"> <saf:textfield label="Please enter your name" name="name"/> <saf:submit/> </safform> </body> </html> |
...