InterviewSolution
Saved Bookmarks
| 1. |
What are JSTL XML tags? |
|
Answer» The JSTL XML tags provide a JSP-centric way of creating and manipulating XML documents. Following is the syntax to include JSTL XML library in your JSP. <% taglib prefix = "x" uri = "http://java.sun.com/jsp/jstl/xml" %> |
|