InterviewSolution
Saved Bookmarks
| 1. |
What is the use of tag? |
|
Answer» The <c:choose> works like a Java switch statement in that it lets you choose between a number of alternatives. Where the switch statement has case statements, the <c:choose> tag has <c:when> tags. A a switch statement has default clause to specify a default action and similar way <c:choose> has <otherwise> as default clause. |
|