Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment:

Update nomenclature

JSP tags are extensions of the generic Tags provided by the framework. You can get started almost immediately by simply knowing the generic structure in which the tags can be accessed: <saf<s:xxx> tag> ... </safs:xxx>tag>, where xxx tag is any of the tags supported by the framework.

...

Code Block
xml
xml
<%@ taglib prefix="safs" uri="action/tags" %>
<html><body>
<p>Now you can use the tags, like so:</p>
<saf<s:iterator value="people">
    <saf<s:property value="lastName"/>, <saf<s:property value="firstName"/>
</safs:iterator>

Next: Freemarker