What do you understand by JSP Actions?

JSP actions are XML tags that direct the
server to use existing components or control the
behavior of the JSP engine. JSP Actions consist of a
typical (XML-based) prefix of "jsp" followed by a
colon, followed by the action name followed by one or
more attribute parameters.
There are six JSP Actions:





Questions by abhinav_saraswat

Showing Answers 1 - 1 of 1 Answers

JSP actions are use to 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 plug-in. Available actions include:
 jsp: include - Include a file at the time the page is requested.
Jsp: useBean - Find or instantiate a Java Bean.
Jsp: setProperty - Set the property of a Java Bean.
Jsp: getProperty - Insert the property of a Java Bean into the output.
Jsp: forward - Forward the requests to a new page.
Jsp: plug-in - Generate browser-specific code that makes an OBJECT or EMBED.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions