IT Placement Papers JAVA JSP
This category contains JSP Interview Questions and Answers |
What is expression in JSP?
|
|
|
|
|
Expression tag is used to insert Java values directly into the output.
Syntax for the Expression tag is:
<%= expression %>
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.
The following expression tag displays time on the output:
<%=new java.util.Date()%>
Only registered users can write comments. Please login or register.
|