How can i pass Collection to JSP page via DynaActionForm?
DynaActionForm formBean;
formBean.set("attribute", someForme.getAttribute());
it works when the method getAttribute() returns String, but when i want to pass Collection -exception is raised.
I need collection for filling a Combo Box in the JSP page.
If there is any simpler way for that -let me know PLEASE!
Best Regards