portalHelper.jsp
file, in Listing 7-2:
public HashSet toHashSet (Enumeration enum) { HashSet h = new HashSet(); while(enum.hasMoreElements()) h.add(enum.nextElement()); return h; }
Thanks to Danilo Gurovich
Correct the META tag in Thanks to Scott Tinsley
Visit the book's page at Hungry Minds.
If you have any comments or questions for Barry Burd, please send email
to jsp at BurdBrain.com. Thank you.tictactoe.jsp
(Listing 9-9) so that it looks like this:
<META HTTP-EQUIV="Refresh" CONTENT="10;URL=tictactoe.jsp">