Sunday, April 11, 2010

JSP Standard Actions

JSP standard actions are commands given to the JSP engine. They direct the engine to perform certain tasks during the execution of a page.
e.g. The following line instructs the engine to forward request to another JSP page, welcome.jsp from current JSP page.

<jsp:forward page="welcome.jsp"/>


There are six standard JSP actions:
  1. jsp:include
  2. jsp:forward
  3. jsp:useBean
  4. jsp:setProperty
  5. jsp:getProperty
  6. jsp:plugin

No comments:

Post a Comment