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
What is taglib uri in jsp?
Explain jsp?
What is meant by session management?
What are the different types of jsp directive?
How can I set a cookie and delete a cookie from within a jsp page?
What is contextpath?
Perform a browser redirection from a jsp page?
mention the three important tags used in the development of jsp bean.
What is a scriptlet in jsp and what is its syntax?
Why is _jspservice() method starting with an '_' while other life cycle methods do not?
What is tld file?
What is jsp processing?
What is custom tag library?
What is the difference between hide comment and output comment?
How do we catch exception and process it using jstl?