Hello I am totally new to
JSP and am running through a good tutorial that I have found applying.
I can get it all to work apart from outputting a variable using JSTL/jsp 2.. not sure what part it is that is not working:
I am outputting this:
<c:out value="${emp.name}"/>
but all that is displayed to the screen is ${emp.name}
I have the tag lib correctly at the top:
<%@ taglib prefix="c" uri="/tags/core" %>
and this is specified in my web.xml as
<taglib>
<taglib-uri>/tags/core</taglib-uri>
<taglib-location>/WEB-INF/c.tld</taglib-location>
</taglib>
I get no errors just no display.
This is all from following this tutorial:
http://www.learntechnology.net/struts-lesson-1.do I am running J-Boss 4.0.4 on a windows machine.
Any help or hints would be gratefully appreciated.
cheers
Martin
[ June 21, 2006: Message edited by: Bear Bibeault ]