Versions Compared

Key

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

Update parent page

...

Code Block
html
html
titleInput.jsp
<%@ 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>

The process of events will go as follows:

...