What are jsp action tags?
Answer / Kush Kant Srivastava
JSP action tags are special tags that allow developers to execute server-side Java code within a JSP page. Examples include the scriptlet tag (<% %>), declare tag ('<%! %>' for declaring variables or methods), and the JSP standard action tags such as 'include', 'if', 'for', etc.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the use of requestdispatcher?
How can I prevent direct access to a jsp page from a browser?
What is the difference in using request.getrequestdispatcher() and context.getrequestdispatcher()?
What is a jsp directive?
What is pagecontext?
What happens when a page is statically included in another jsp page?
What is meant by implicit objects and what are they?
What is scripting elements in jsp?
What is tld in jsp?
What is the purpose of jsp and why it is widely used?
What is the use of session management?
What are scriptlets in jsp?