JSP Actions
JSP actions use constructs in XML syntax to control the behavior of the
servlet engine. You can dynamically insert a file, reuse JavaBeans components,
forward the user to another page, or generate HTML for the Java plugin.
Available actions include:
jsp:include - Include a file at the time the page is requested.
jsp:useBean - Find or instantiate a JavaBean.
jsp:setProperty - Set the property of a JavaBean.
jsp:getProperty - Insert the property of a JavaBean into the output.
jsp:forward - Forward the requester to a new page.
jsp:plugin - Generate browser-specific code that makes
an OBJECT or EMBED tag for the Java plugin.
|