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
How to disable scripting?
Explain lifecycle methods.
Differentiate between
Why should we not configure jsp standard tags in web.xml?
How can the output of JSP or servlet page be prevented from being cached by the browser?
Which package does jsp api consist of?
What is client side technology?
how to write the code of jsp program?
What is jstl (jsp standard tag library)?
Can you call jsp from servlet?
Is jsp front end or backend?
Why jsp is better over static html also explain lifecycle of a jsp?
Why does _jspService() start with an ‘_’ but other lifecycle methods do not?
Why jsp is faster than servlet?
What are implicit objects in jsp?