Enabling tag libraries in jsp
Posted
by noam
on Stack Overflow
See other posts from Stack Overflow
or by noam
Published on 2010-03-08T08:26:34Z
Indexed on
2010/03/08
8:36 UTC
Read the original article
Hit count: 470
I feel like I am missing something - from what it seems, jsp comes out of the box with support for tags, as this question's answer shows (the guy was asking a pure-jsp question and got an answer involving tags). But if I try to run the given code
<c:out value="${myString}"/>
(with myString
defined before, of course), the jsp just writes the above line into the html.
Do I have to do something extra to enable it?
© Stack Overflow or respective owner