The example on page 436. I have set a an array in a servlet like shown below:
Then in the result.jsp I have done below:
But the ouput I get shown is: <@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> Movie List
Im not being shown the list of movies as shown on p 436. Why?
Chandra Bhatt
Ranch Hand
Joined: Feb 28, 2007
Posts: 1707
posted
0
But the ouput I get shown is: <@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> Movie List
Hi Tontang Bei,
That is because you launched jsp page directly. Launch the servlet that will set the request attribute and then dispatch the later job of printing to the jsp page (output rendering).