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:escapeXml() – JSTL Function

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

fn:escapeXml() JSTL function is used for HTML/XML character escaping which means it treats html/xml tags as a string rather than markup tags. It is similar… [Read More]

fn:endsWith() – JSTL Function

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

fn:endsWith() function is used for checking the suffix of a string. It checks whether the given string ends with a particular string. The validation is… [Read More]

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]

  • « Previous Page
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Next Page »

JSP Tutorial

  • Basics of JSP
  • Life cycle of JSP
  • JSP in Eclipse IDE

Scripting Elements

  • Scriptlet Tag
  • Expression tag
  • Declaration tag

Implicit Objects

  • Implicit Objects
  • JSP Request
  • JSP Response
  • JSP Config
  • JSP Application
  • JSP Session
  • JSP Out
  • JSP pageContext
  • JSP Exception
  • Validate session

JSP directives

  • JSP Directives
  • Include Directive

JSP Exception

  • Exception handling

JSP Action

  • Action tags
  • Include action
  • Forward action
  • useBean, setProperty & getProperty

Expression language

  • Expression language

JSP Custom Tags

  • Custom Tags
  • Custom tag example
  • JSP Interview Q

Copyright © 2012 – 2026 BeginnersBook . Privacy Policy . Sitemap