BeginnersBook

  • Home
  • Java
    • Java OOPs
    • Java Collections
    • Java Examples
  • C
    • C Examples
  • C++
    • C++ Examples
  • DBMS
  • Computer Network
  • Python
    • Python Examples
  • More…
    • jQuery
    • Kotlin
    • WordPress
    • SEO
    • JSON
    • JSP
    • JSTL
    • Servlet
    • MongoDB
    • XML
    • Perl

fn:containsIgnoreCase() – JSTL Function

Last Updated: December 1, 2013 by Chaitanya Singh | Filed Under: JSTL

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

Last Updated: December 1, 2013 by Chaitanya Singh | Filed Under: JSTL

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

Last Updated: November 30, 2013 by Chaitanya Singh | Filed Under: JSTL

<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

Last Updated: November 30, 2013 by Chaitanya Singh | Filed Under: JSTL

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

Last Updated: November 30, 2013 by Chaitanya Singh | Filed Under: JSTL

<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

Last Updated: November 30, 2013 by Chaitanya Singh | Filed Under: JSTL

<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

Last Updated: November 30, 2013 by Chaitanya Singh | Filed Under: JSTL

<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

Last Updated: November 29, 2013 by Chaitanya Singh | Filed Under: JSTL

<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

Last Updated: November 29, 2013 by Chaitanya Singh | Filed Under: JSTL

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

Last Updated: November 29, 2013 by Chaitanya Singh | Filed Under: JSTL

<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]

  • « Previous Page
  • 1
  • 2
  • 3
  • Next Page »

JSTL Core Tags

  • c:out
  • c:set
  • c:remove
  • c:if
  • c:choose
  • c:when
  • c:otherwise
  • c:catch
  • c:import
  • c:forEach
  • c:forTokens
  • c:param
  • c:url
  • c:redirect
JSTL Functions
  • fn:contains()
  • fn:containsIgnoreCase()
  • fn:indexOf()
  • fn:escapeXML()
  • fn:join() & fn:split()
  • fn:length()
  • fn:startsWith()
  • fn:endsWith()
  • fn:substring()
  • fn:substringAfter()
  • fn:substringBefore()
  • fn:trim()
  • fn:toUpperCase()
  • fn:toLowerCase()
  • fn:replace()

Copyright © 2012 – 2026 BeginnersBook . Privacy Policy . Sitemap