hi all ,
i am trying to give this tag nested in a html:select , a collection which is a vector and it says
Cannot find bean under name org.apache.struts.taglib.html.BEAN
this is the code
thanks
<%
java.util.Vector arr= (java.util.Vector)session.getAttribute("collectionObject");
int siz=arr.size();
pageContext.setAttribute("selectData", arr);
%>
the size is<%=siz%>
<html:select property="mySelect">
<html
ptions collection="selectData" property="value" />
</html:select>
</html>