I need a
servlet that during initialization reads a txt file into an ArrayList
The file format is like below
elementA1|elementB1
elementA2|elementB2
.........
..........
and then display the content of of the first element in a drop down list in order for a user to choose from.
Then, when the user has chosen I want to forward him/her to another
JSP page where these 2 values are written as a parameters in a jsp plugin like below
<jsp:plugin type=applet
.....
....
<jsp:param
name=param1
value="${elemenA}"/>
<jsp:param
name=param2
value="${elementB}"/>
.......
........
(Marilyn fixed smileys to no-smileys)
[ February 27, 2006: Message edited by: Marilyn de Queiroz ]