I am working on a JSP page, but I was requested to change the dynamicly created table with a set of dynamiclly created hyperlinks.
heres an example of whats generated:
<SELECT NAME=show SIZE=15>
<OPTION VALUE=wpf>wpf, What Planet Are You From, Dave Taritero, Patrick Mc Clung, , 1093, 0
<OPTION VALUE=xx2>xx2, XXX2, , , , 3, -1
<OPTION VALUE=xyz>xyz, Xavier and You at the Zoo, Sally Mae, Tim Johnson, , 0, 0
<OPTION VALUE=ygm>ygm, You Got Mail, Julia Rivas, , , 90, 0
<OPTION VALUE=yrd>yrd, The Longest Yard, Debbie Denise / Daniel Kuehn, Sheena Duggal, , 1, -1
</SELECT>
...
<input type=submit name=show_search value="Select Show">
In the JSP script, I have all the info (the info separated by commas) drawn individually. So thats not a problem. Basically in this script I really need is to know how to change links that all act as their own submit buttons.
heres an example of whats generated:
<SELECT NAME=show SIZE=15>
<OPTION VALUE=wpf>wpf, What Planet Are You From, Dave Taritero, Patrick Mc Clung, , 1093, 0
<OPTION VALUE=xx2>xx2, XXX2, , , , 3, -1
<OPTION VALUE=xyz>xyz, Xavier and You at the Zoo, Sally Mae, Tim Johnson, , 0, 0
<OPTION VALUE=ygm>ygm, You Got Mail, Julia Rivas, , , 90, 0
<OPTION VALUE=yrd>yrd, The Longest Yard, Debbie Denise / Daniel Kuehn, Sheena Duggal, , 1, -1
</SELECT>
...
<input type=submit name=show_search value="Select Show">
In the JSP script, I have all the info (the info separated by commas) drawn individually. So thats not a problem. Basically in this script I really need is to know how to change links that all act as their own submit buttons.