InterviewSolution
Saved Bookmarks
| 1. |
What are JSP actions? |
|
Answer» 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. Its syntax is as follows − <jsp:action_name attribute = "value" /> |
|