JSTL Archive
JSTL setDataSource Tag provides capability to create a datasource directly from JSP and it can be stored in a variable to use later with the help of scope attribute. Syntax- <sql:setDataSource var=”<string>” scope=”<string>” …
The <fmt:requestEncoding> tag is used to specify the character encoding of the request. The character encoding specified using this tag is used to decode the incoming forms data entered by the user. We must use …
<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>” …
<fmt:timeZone> tag is used to specify the time zone. It’s scope is limited to its body, it parses the actions that are nested into its body. The <fmt:timeZone> tag is used to specify the time …
The <fmt:setBundle> tag is used to load a resource bundle and stores it in the named scoped variable or the bundle configuration variable. <fmt:setBundle> tag in JSTL is used in a JSP page to set …
In this tutorial you will learn about how to use the JSTL fmt tag setLocale in JSP. JSTL Set Locale Tag is used to change the locale configuration. SetLocal tag takes ISO Language Code and …
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 …