Link to home
Start Free TrialLog in
Avatar of RUSTY
RUSTY

asked on

<SELECT><OPTION VALUE=array[]>

I know this is more html than jsp, but I'm executing it in a jsp.  Can I assign an array to the value of an option?

Like this:

<SELECT><OPTION VALUE=array[]>    


200 pts.--a ridiculously gernerous question.
Avatar of cheekycj
cheekycj
Flag of United States of America image

can you maybe output the array as a comma delimted list.. and put that as the value?

CJ
Avatar of knightEknight

like this?

  <OPTION VALUE='<%=array[0]%>'><%=array[0]%></option>
ASKER CERTIFIED SOLUTION
Avatar of kotan
kotan
Flag of Malaysia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
kotan: Isn't that what I suggested in my first comment?
Avatar of RUSTY
RUSTY

ASKER

cheekyci give hint, kotan give answer.
Kotan.. gave an example of how to do my approach.

Anyhow, as long you got your desired answer.

CJ