
- Basic JSP Tutorial
- JSP - Home
- JSP - Overview
- JSP - Environment Setup
- JSP - Architecture
- JSP - Lifecycle
- JSP - Syntax
- JSP - Directives
- JSP - Actions
- JSP - Implicit Objects
- JSP - Client Request
- JSP - Server Response
- JSP - Http Status Codes
- JSP - Form Processing
- JSP - Writing Filters
- JSP - Cookies Handling
- JSP - Session Tracking
- JSP - File Uploading
- JSP - Handling Date
- JSP - Page Redirect
- JSP - Hits Counter
- JSP - Auto Refresh
- JSP - Sending Email
- Advanced JSP Tutorials
- JSP - Standard Tag Library
- JSP - Database Access
- JSP - XML Data
- JSP - Java Beans
- JSP - Custom Tags
- JSP - Expression Language
- JSP - Exception Handling
- JSP - Debugging
- JSP - Security
- JSP - Internationalization
- JSP Useful Resources
- JSP - Questions and Answers
- JSP - Quick Guide
- JSP - Useful Resources
- JSP - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
JSTL - Core <c:out> Tag
The <c:out> tag displays the result of an expression. This is almost similar to the way <%= %> works. The difference here is that <c:out> tag lets you use the simpler "." notation to access properties. For example, to access customer.address.street, use the tag <c:out value = "customer.address.street"/>.
The <c:out> tag can automatically escape XML tags so they aren't evaluated as actual tags.
Attribute
The <c:out> tag has the following attributes −
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> , &
jsp_standard_tag_library.htm
Advertisements