I am able to populate <html:select> with <html
ptions> for which values
come from a properties file.
The problem is
I want to have the display and value for <html
ption> the same.
Part of my code in jsp is like this.
<% for(int k = 1;k<226;k++){
%>
<html
ption bundle="countries" key='<%= k+"" %>' value='<%= k+""%>'/>
<%}%>
Any help is highly appreciated.
Thank you all.