What are JSP ACTIONS?
Answers were Sorted based on User's Feedback
Answer / janet
JSP actions use constructs in XML syntax to control the
behavier of the servlet engine.you can dynamially insert a
file, reuse Java Beans Components,forward the user to
another page,or generate HTML for the java plugin.Available
actions include:
jsp:include,jsp:useBean,jsp:setProperty,jsp:getProperty,jsp:forward,jsp:plugin
| Is This Answer Correct ? | 28 Yes | 2 No |
Answer / nitin mishra
Action tag is used to transfer the control between pages
and is also used to enable the use of server side
JavaBeans. Instead of using Java code, the programmer uses
special JSP action tags to either link to a Java Bean set
its properties, or get its properties.
There are many action tags that are available for Java
Server Pages. The most commonly used action tags are three
of them and they are namely:
include
forward
useBean
| Is This Answer Correct ? | 13 Yes | 3 No |
Why jsp is faster than servlet?
What are the different types of directives available in jsp?
what type of question will be asked in the interview in this software field?????///
What is the difference in using request.getrequestdispatcher() and context.getrequestdispatcher()?
Explain jsp:plugin action?
Can constructor be used instead of init(), to initialize servlet?
What is the difference between "JTable" and "JTGrid"? can they be used interchangeably?
What is the difference between java servlet and jsp?
i have one jsp page. inside this, String s=req.getParameter("raja");...... now we want to remove duplicate characters and o/p will be like "rj".... what is the logic?
What does .com stand for?
What is the advantage of using getProperty action, as compared to the accessor method?
how to write the code of jsp program?