Reputation: 59
I want to write a string with quotes in a jsp page which is using jstl tag c:out for its value that means I want to write: c:out value = '"4"' Please suggest asap..
Upvotes: 1
Views: 1449
Reputation: 9655
Did you try to use escapeXml attribute?
<c:out value='"4"' escapeXml="false"></c:out>
Upvotes: 4