Hi How to manage the two dimenisonal array using logic:iterate
code is:-
-----
String conditions[][]=new String[][]
{
{"O","OR"},
{"A","AND"}
};
I want 'O' as the value of option and 'OR' to display in the combo box.
<select name="a">
<option value="O">OR</option>
<option value="A">AND</option>
</select>
What the code i have to write to use the string array in select statment.
help me
Regards
Shashi Bhushan
SCJP,SCJD

