Re: How o display a hashtable in jsp

2006-06-26 Thread Martin Gainty
e on in each iteration is a java.util.Map.Entry, i.e. you must access its key/value accordingly. The same is true, if you are using Struts logic tags. Martin -Ursprüngliche Nachricht- Von: Tejas Bavishi [mailto:[EMAIL PROTECTED] Gesendet: Montag, 26. Juni 2006 11:06 An: 'Struts User

RE: How o display a hashtable in jsp

2006-06-26 Thread nageshkumar.siddu
RE: How o display a hashtable in jsp Hi Pankaj Not sure if this can be done by the tag, may be others can comment. But you can definitely do this using a scriptlet. Hashtable has keys() method that returns an Enumeration of keys. You can traverse through this enumeration to print the keys and cor

RE: How o display a hashtable in jsp

2006-06-26 Thread Tejas Bavishi
Hi Pankaj Not sure if this can be done by the tag, may be others can comment. But you can definitely do this using a scriptlet. Hashtable has keys() method that returns an Enumeration of keys. You can traverse through this enumeration to print the keys and corresponding values. Hope that helps R