- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to apply if tag in JSP?
The <c:if> tag evaluates an expression and displays its body content only if the expression evaluates to true.
Attribute
The <c:if> tag has the following attributes −
Attribute | Description | Required | Default |
---|---|---|---|
test | Condition to evaluate | Yes | None |
var | Name of the variable to store the condition's result | No | None |
scope | Scope of the variable to store the condition's result | No | page |
Example
<%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %> <html> <head> <title><c:if> Tag Example</title> </head> <body> <c:set var = "salary" scope = "session" value = "${2000*2}"/> <c:if test = "${salary > 2000}"> <p>My salary is: <c:out value = "${salary}"/><p> </c:if> </body> </html>
The above code will generate the following result −
My salary is: 4000
- Related Articles
- How to apply choose tag in JSP?
- How to apply forEach tag in JSP?
- How to apply forTokens tag in JSP?
- I want to create a custom tag in JSP. How to write a custom tag in JSP?
- How can I create custom tag in JSP which can accept attribute from parent jsp page?
- What is the use of tag in JSP?
- What is the use of tag in JSP?
- What is the use of tag in JSP?
- How to apply a tag to the azure resource group using PowerShell?
- How to write an if-else statement in a JSP page?
- How to apply a condition only if field exists in MongoDB?
- What are the standard attributes that should be passed to a custom tag in a JSP page?
- How to check if an input string contains a specified substring in JSP?
- How to use action in JSP?
- How to use action in JSP?

Advertisements