How does the Jsp Expressions works ? What happens at the
back?
Answer Posted / rajini
An expression tag contains a scripting language expression
that is evaluated, converted to a String, and inserted
where the expression appears in the JSP file. Because the
value of an expression is converted to a String, you can
use an expression within text in a JSP file. Like
<%= someexpression %>
<%= (new java.util.Date()).toLocaleString() %>
You cannot use a semicolon to end an expression
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Why session is used?
Is jsp better than servlet?
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.
Tell us about the stages (phases) of the jsp life cycle.
What are standard actions in JSP?
What is the include directive?
Explain jsp technology?
How to deactivate el usage on jsp?
Which tag should be used to pass information from jsp to include jsp?
What is jsp-config in deployment descriptor?
What is welcome file list?
What is the use of?
What are the jsp tag?
Why is _jspservice () method starting with an '_'?
How to restrict page errors display in a JSP page?