|
Answer» Various action tags used in JSP are as follows: - jsp:FORWARD: This action tag forwards the request and response to another resource.
- jsp:include: This action tag is used to include another resource.
- jsp:USEBEAN: This action tag is used to create and locates bean objects.
- jsp:setProperty: This action tag is used to set the value of the PROPERTY of the bean.
- jsp:getProperty: This action tag is used to print the value of the property of the bean.
- jsp:plugin: This action tag is used to embed another component such as the applet.
- jsp:param: This action tag is used to set the parameter value. It is used in forward and includes mostly.
- jsp:fallback: This action tag can be used to print the message if the plugin is WORKING.
|