I have a vector of objects in my servlet which I enumerate so that I can populate them in a jsp page one by one I imagine like this:
Enumeration<codes> ls = codes_found.elements();
            while (ls.hasMoreElements()){
                codes code=(codes)ls.nextElement();
                out.println("Code ID: "+code.getCode_id()+" Code Description: "+code.getCode_descr()+"<br/ >");
            }
Can someone tell me how can I populate them in jsp like this? Thanks
