InterviewSolution
Saved Bookmarks
| 1. |
What are JSP expressions? |
|
Answer» A JSP expression element contains a scripting language expression that is evaluated, converted to a String, and inserted where the expression appears in the JSP file. The expression element can contain any expression that is valid according to the Java Language Specification but you cannot use a semicolon to end an expression. Its syntax is − <%= expression %> |
|