You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Vijay Kumar <ka...@optis.cc> on 2005/02/21 08:39:26 UTC

The method setValue(String, Object) in the type TagSupport is not applicable for the arguments (Object)

Here is my code and iam getting the error
The method setValue(String, Object) in the type TagSupport is not
applicable for the arguments (Object)
 
Can any one tell wht the problem is
Bye
vijay
 
<html:select property="bunriSubcdNm">
<%
  if(request.getAttribute("pass")!=null)
 {
%>
<logic:iterate id="bunrisubname" name="pass">
<bean:define id="def_bunruicd" name="bunrisubname"
property="bunriSubcdNm"/>
<html:option value="<%=def_bunruicd%>">
<bean:write name="bunrisubname" property="bunriSubcdNm"/> 
<bean:write name="bunrisubname" property="bunriSubcd"/>
</html:option>
</logic:iterate>
<%}%>
</html:select>