• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Query regarding html:options

 
Ranch Hand
Posts: 94
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I want to use the html ptions or html ptionsCollection tag.Just for practice
inside a JSP page I am creating an ArrayList using scriplet.
<%
ArrayList list=new ArrayList();
list.add("a");
list.add("b");
list.add("c");
%>
In the same page I am writing
<html:select property="abc">
<html ptions name="list" />
</html:select>
Now the error is "can not find bean under name org.apache.struts.taglib.BEAN ".
Can anybody sort it out ?
Reagards .
Ayan Dutta
 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Dutta,

Check the following jar files were not in the application lib folder
commons-beanutils.jar
commons-digester.jar
 
Ayan Dutta
Ranch Hand
Posts: 94
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Yasoda,

commons-beanutils.jar
commons-digester.jar
these 2 files are present in the lib .But then also it is not working .
Any other clue(s) ?
Regards.
Ayan
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic