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 |
what is the enitre process of using smart forms to create forms?
How can I use the results of my method? ea: <%! method (int x) { stuff return y; } %> <% out.println(y); %> how can I make this work? "y" is a variable made during the method.
we want to provide the errors to the right side of the text field so what we want to add in jsp pages?
Explain jsp and tell its uses?
Can u Override any of the lifecycle methods of JSP?
Can Static method be Override?
What is the use of Application Object and Session Object in JSP?
What is the purpose of <jsp:getproperty >?
How can I override the jspinit() and jspdestroy() methods within a jsp page?
Define Composition.
What is el in jsp?
What is contextpath?