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

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]

JSTL <c:remove> Core Tag

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

<c:remove> tag is used for removing an attribute from a specified scope or from all scopes (page, request, session and application). Example In the below… [Read More]

JSTL <c:set> Core Tag

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

<c:set> core JSTL tag is used for assigning a value to an object or variable within a specified scope. Let’s understand this with an example…. [Read More]

JSTL <c:out> Core Tag

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

<c:out> is a JSTL core tag, which is used for displaying server-side variables and hardcoded values on the browser (client). You may be wondering that a variable’s… [Read More]

Tags:

JSP Expression Language (EL) – JSP Tutorial

Last Updated: September 10, 2022 by Chaitanya Singh | Filed Under: JSP tutorial

Expression language (EL) has been introduced in JSP 2.0. The main purpose of it to simplify the process of accessing data from bean properties and… [Read More]

JSP Declaration tag

Last Updated: July 27, 2022 by Chaitanya Singh | Filed Under: JSP tutorial

JSP Declaration tag is a block of java code used for declaring class wide variables and methods. The code placed inside declaration tag gets initialized… [Read More]

JSP Expression Tag

Last Updated: July 27, 2022 by Chaitanya Singh | Filed Under: JSP tutorial

JSP Expression tag evaluates the expression placed in it, converts the result into String and send the result back to the client through response object…. [Read More]

Exception handling in JSP

Last Updated: September 10, 2022 by Chaitanya Singh | Filed Under: JSP tutorial

Before going through exception handling in JSP, let’s understand what is exception and how it is different from errors. Exception: These are nothing but the abnormal… [Read More]

jsp:useBean, jsp:setProperty and jsp:getProperty Action Tags

Last Updated: September 10, 2022 by Chaitanya Singh | Filed Under: JSP tutorial

In this tutorial we will see how to use a bean class in JSP with the help of jsp:useBean, jsp:setProperty and jsp:getProperty action tags. Syntax of… [Read More]

JSP include action Tag

Last Updated: July 1, 2024 by Chaitanya Singh | Filed Under: JSP tutorial

Include action tag is used for including another resource to the current JSP page. The included resource can be a static page in HTML, JSP… [Read More]

JSP forward action tag

Last Updated: July 1, 2024 by Chaitanya Singh | Filed Under: JSP tutorial

JSP forward action tag is used for forwarding a request to the another resource (It can be a JSP, static page such as html or… [Read More]

Include Directive in JSP

Last Updated: July 27, 2022 by Chaitanya Singh | Filed Under: JSP tutorial

In this tutorial, you will learn include directive in JSP with example. Include directive is used to copy the content of one page to another…. [Read More]

JSP Implicit Objects

Last Updated: July 27, 2022 by Chaitanya Singh | Filed Under: JSP tutorial

JSP implicit objects are created by JSP Engine during translation phase (while translating JSP to Servlet). They are being created inside service method so we… [Read More]

Config Implicit Object in JSP with examples

Last Updated: July 27, 2022 by Chaitanya Singh | Filed Under: JSP tutorial

In this tutorial, you will learn config implicit object in JSP. It is an instance of javax.servlet.ServletConfig. The JSP config implicit object is used for getting… [Read More]

  • « Previous Page
  • 1
  • 2
  • 3
  • 4
  • 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 – 2025 BeginnersBook . Privacy Policy . Sitemap