Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Selected Reading
How to print result of a java expression in JSP?
The
The
Attribute
The
| Attribute | Description | Required | Default |
|---|---|---|---|
| Value | Information to output | Yes | None |
| default | Fallback information to output | No | body |
| escapeXml | True if the tag should escape special XML characters | No | true |
Example
<%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %>
<html>
<head>
<title> <c:out> Tag Example</title>
</head>
<body>
<c:out value = "${'<tag> , &'}"/>
</body>
</html>
The above code will generate the following result −
<tag> , &
Advertisements
