InterviewSolution
Saved Bookmarks
| 1. |
What is JSP Expression Language? |
|
Answer» JSP Expression Language (EL) makes it possible to easily access application data stored in JavaBeans components. JSP EL allows you to create expressions both (a) arithmetic and (b) logical. A simple syntax for JSP EL is − ${expr} Here expr specifies the expression itself. |
|