Unsubscribe..

2001-05-07 Thread raghu tadi
Please UNSUBSCRIBE me. _ Get your FREE download of MSN Explorer at http://explorer.msn.com

Re: Iterate

2001-03-28 Thread raghu tadi
Craig, I was wondering how your idea would work if I'm setting some properties in a Class and then adding the object to the vector. Something like, Vector v = new Vector(); while(resultset.next()) { MyClass cls = new MyClass(); cls.setName(resultSet.getString("nameColumn")); v.addElement(cls); }

Iterate

2001-03-27 Thread raghu tadi
How would the bean element holding a vector of String objects be type casted to a String Object. Snippet : % Vector v = new Vector(); v.addElement(new String("John Doe")); v.addElement(new String("Jane Doe")); pageContext.setAttribute("v",v,