Answer Posted / santosh
JSP scripting elements let you insert code into the servlet
that will be generated from the JSP page. There are three forms:
1. Expressions of the form <%= expression %>, which are
evaluated and inserted into the servlet’s output
2. Scriptlets of the form <% code %>, which are inserted
into the servlet’s _jspService method (called by service)
3. Declarations of the form <%! code %>, which are inserted
into the body of the servlet class, outside of any existing
methods
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Explain the difference between include directive and include action in jsp?
Which jsp methods can be overridden?
How clear chache and buffer of opera browser.
What is difference between javascript and jsp?
What is the default value of session attribute in jsp?
What are the primary differences between the jsp custom tags and java beans?
Explain lifecycle methods.
Explain how you understand the action tag and jsp action elements.
Can you stop multiple submits to a web page that are initiated by clicking to refresh button?
How do we configure init params for jsp?
In the servlet 2.4 specification singlethreadmodel has been deprecated, why?
What is jstl jar?
How can I prevent direct access to a jsp page from a browser?
Can jsp contain javascript?
What are different implicit objects of jsp?