In the last tutorial we learnt about fn:contains() function which is used for case sensitive checking. In this post we are going to see fn:containsIgnoreCase()… [Read More]
fn:contains() – JSTL Function
fn:contains() function checks whether the given string is present in the input as sub-string. It does a case sensitive check, which means it considers the… [Read More]
JSTL <c:param> Core Tag
<c:param> JSTL tag is mostly used with <c:url> and <c:redirect> tags. Basically it adds parameter and their values to the output of these tags. In… [Read More]
JSTL <c:import> Core Tag
JSTL <c:import> tag is used for importing the content from another file/page to the current JSP page. Syntax: <c:import var=”variable_name” url=”relative_url”/> Here variable_name is a… [Read More]
JSTL <c:url> Core Tag
<c:url> JSTL tag is used for url formatting or you can say url encoding. This is mainly used when we need to open a JSP… [Read More]
JSTL <c:redirect> Core Tag
<c:redirect> is used for redirecting the current page to another URL. Syntax: <c:redirect url=”http://www.anydomainhere.com/samplepage.jsp”/> This is how the <c:redirect> tag looks like. We just need… [Read More]
JSTL <c:catch> Core Tag
<c:catch> JSTL tag is used in exception handling. Earlier we shared how to do exception handling in JSP – the two ways. In this post we… [Read More]
JSTL <c:forEach> and <c:forTokens> Core Tags
<c:forEach> tag in JSTL is used for executing the same set of statements for a finite number of times. It’s similar to the for loop… [Read More]
JSTL <c:choose>, <c:when>, <c:otherwise> Core Tags
In this article we are discussing <c:choose>, <c:when> and <c:otherwise> core tags of JSTL. These tags are used together like switch-case and default statements in… [Read More]
JSTL <c:if> Core Tag
<c:if> is a JSTL core tag which is used for testing conditions. It is more or like a if statement in java which evaluates a… [Read More]