Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ianhunter

  1. ianhunter

    Populating drop-down box in JSP using bean

    Unless you want lots of Java code in your JSPs, you need to develop an iterating tag. For example, <select name=&quot;whatever&quot;> <jsp:useBean id=&quot;newPeriod&quot; scope=&quot;session&quot;/> <app:iterate id=&quot;thisPeriod&quot; array=&quot;newPeriod&quot;/> <option><jsp:getProperty...
  2. ianhunter

    hide/display links with jsp

    But that defeats the concept of trying to keep Java code out of the presetnation layer (JSP)... another solution, more elegant, and only slightly more time consuming, is to create new tags and use those. For instance... public class IsSuperUserTag extends BodyTagSupport { public int...

Part and Inventory Search

Back
Top