Hi,
I have a drop-down box in my JSP page and need to populate this control by the values returned
by method defined in bean class. I'm not sure about the syntax in JSP side. I really appreciate any suggestions.
Thanks
package business;
public class Common {
private String[] items = { "09/09/2002", "09/10/2002" , "09/11/2002" };
public String[] getPeriodEnding() {
return (items);
}
}
I have a drop-down box in my JSP page and need to populate this control by the values returned
by method defined in bean class. I'm not sure about the syntax in JSP side. I really appreciate any suggestions.
Thanks
package business;
public class Common {
private String[] items = { "09/09/2002", "09/10/2002" , "09/11/2002" };
public String[] getPeriodEnding() {
return (items);
}
}