• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Tim Cooke
Sheriffs:
  • Rob Spoor
  • Liutauras Vilda
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
  • Piet Souris
Bartenders:
  • Stephan van Hulst

JSTL pg 437 HFSJ

 
Ranch Hand
Posts: 94
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using netbeans 5.0 IDE and trying to workout example on pg 437. Below is my code

<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@page isELIgnored = "false"%>


<html>

<body>

<h1>Movie List</h1>
<%
String[] movieList = {"Amelie", "Return of the King", "Mean Girls"};
request.setAttribute("movielist", movieList);
%>
<table>

<c:forEach var="movie" items="${movielist}">
<tr>
<td>$(movie}</td>
</tr>
</c:forEach>

</table>
</body>
</html>

When I run this code, I am getting below output. Why is movie not being evaluated? any ideas?

Movie List
$(movie}
$(movie}
$(movie}

Thanks,

Harish
 
Harish Yerneni
Ranch Hand
Posts: 94
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have added jstl.jar and standard.jar to /WEB-INF/lib.
 
Harish Yerneni
Ranch Hand
Posts: 94
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Guys, I found my mistake. It was $(movie}. Wrong brace.

Thanks,

Harish
 
My previous laptop never exploded like that. Read this tiny ad while I sweep up the shards.
New web page for Paul's Rocket Mass Heaters movies
https://coderanch.com/t/785239/web-page-Paul-Rocket-Mass
reply
    Bookmark Topic Watch Topic
  • New Topic