Hi all
I've created a Hashtable, who's values are Vectors:
Vector a = new Vector();
a.add("something");
a.add("somethingelse");
Vector b = new Vector();
b.add("something");
b.add("somethingelse");
Hashtable ht = new Hashtable();
ht.put ("key", a);
ht.put ("anotherkey", b);
request.setAttribute("attrkey", ht);
What I want to be able to do is iterate through this Hashtable (in the JSP),
pull out a Vector, and iterate through it. How would I do this?
tia
bort
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]