Actions in JSP pages
JSP
Actions
Actions are
commands given to the JSP engine. They direct the engine to perform
certain tasks during the execution of the page. to explain this in one
scenario, if we need to get the out put of some other jsp file in
existing we can use action as following
<jsp:include
page="test.jsp" />
there are six
standard actions in JSP
- jsp:include
- jsp:forward
- jsp:useBean
- jsp:setProperty
- jsp:getProperty
- jsp:plugin
first two standard actions are called as
Reusable web components. 3, 4, 5 are related to java beans and its
attributes and plugins use to generate html code for embedding soem
clients side objects like an applet.
Please send comments to vgdarur.javafive@blogger.com
|