InterviewSolution
Saved Bookmarks
| 1. |
Explain Formatting Tags? |
|
Answer» Formatting tags: JSTL Formatting tags are PROVIDED for formatting of Numbers, Dates and i18n support through locales and resource bundles. We can include these jstl tags in JSP with below syntax: <pre class="prettyprint"> <%@ taglib URI="http://java.sun.com/jsp/jstl/FMT" PREFIX="fmt" %> Formatting tags: JSTL Formatting tags are provided for formatting of Numbers, Dates and i18n support through locales and resource bundles. We can include these jstl tags in JSP with below syntax: <pre class="prettyprint"> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> |
|