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
What is out println in jsp?
What is a hidden comment in jsp?
Explain jsp?
How did you implement caching in jsp?
How can you avoid scriptlet code in jsp?
What are different implicit objects of jsp?
What is jsp translation phase?
Give an example where you need jsp custom tag?
Can we define a class in a jsp page?
How to deactivate el usage on jsp?
How does el search for an attribute?
What is jstl used for?
What are the different types of jsp tags?
What are the different scope values for the jsp objects?
Give the use of session object.