InterviewSolution
Saved Bookmarks
| 1. |
How can we disable EL ? |
|
Answer» We can disable using isELIgnored attribute of the page directive − <% page isELIgnored = "true|false" %> If it is true, EL expressions are ignored when they appear in static text or tag attributes. If it is false, EL expressions are evaluated by the container. |
|