| Author |
JSP set and out
|
Dan Howard
Ranch Hand
Joined: Feb 22, 2004
Posts: 47
|
|
Hi All,
In my page I have:
And then later in the same page I have:
But in the page I see $title and not Scheduler. What's wrong?
TIA
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56547
|
|
What do you see if you use ${title} without <c:out>?
If the EL isn't being evaluated, chances are your web app is misconfigured. Check the JSP FAQ.
What do see in the View Source? Are the JSTL tags being evaluated at all?
By the way, following conventions is a good idea because no one gets confused when they look at your code. The core tags should be mapped to prefix c, not core.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Mark E Hansen
Ranch Hand
Joined: Apr 01, 2009
Posts: 639
|
|
You see $title, not ${title}?
|
 |
Dan Howard
Ranch Hand
Joined: Feb 22, 2004
Posts: 47
|
|
Thanks! My web.xml didn't have any proper declarations in it. I changed it according the FAQ and I see it now correctly.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56547
|
|
|
 |
 |
|
|
subject: JSP set and out
|
|
|