Monthly Archive: October 2013

JSTL fmt Tag message <fmt:message> Example

<fmt:message> tag is used to map the key from the key-value paired mapped localized message and returns the value by replacing the key to the respective value. Syntax <fmt:message    key=”<string>”    bundle=”<string>”    var=”<string>” …

JSTL bundle tag <fmt:bundle>

In this tutorial you will learn about the JSTL <fmt:bundle> tag. <fmt:bundle> tag is used to avail the resource for using the formats. A resource bundle is loaded by this tag which will be used …

JSTL Parse Number Example <fmt:parseNumber>

JSTL Parse Number tag is used to parse the numbers, percentage or currency. JSTL Parse Number Example: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> <html> <head> <title>JSTL Parse Number Example</title> </head> <body> …