

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 set result of a java expression in a property in JSP?
The <c:set> tag is JSTL-friendly version of the setProperty action. The tag is helpful because it evaluates an expression and uses the results to set a value of a JavaBean or a java.util.Map object.
Attribute
The <c:set> tag has the following attributes −
Attribute | Description | Required | Default |
---|---|---|---|
Value | Information to save | No | body |
target | Name of the variable whose property should be modified | No | None |
property | Property to modify | No | None |
var | Name of the variable to store information | No | None |
scope | Scope of variable to store information | No | Page |
If target is specified, property must also be specified.
Example
<%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %> <html> <head> <title><c:set> Tag Example</title> </head> <body> <c:set var = "salary" scope = "session" value = "${2000*2}"/> <c:out value = "${salary}"/> </body> </html>
The above code will generate the following result −
4000
- Related Questions & Answers
- How to print result of a java expression in JSP?
- How to use a value of XPath expression result in JSP in a variable?
- How to print XPath Expression result in JSP?
- How to write a JSP Expression?
- How to print a date using JSP Expression?
- How to set time zone in a JSP?
- How to set the data source in a JSP?
- Set the result of a query to a variable in MySQL?
- Matching from a set of characters Java regualr expression
- How to write a conditional expression in lambda expression in Java?
- Can we have a switch statement in JSP for XPath expression?
- Reduce number of columns of a result set from a Transaction in SAP system
- How to populate a Map using a lambda expression in Java?
- Can we test XPath expression in JSP?
- How to create a MySQL table based on JDBC Result Set?
Advertisements