about logic:iterate tag in struts

Hi all,

Please give me the explanation for the following

I have CompEmployees class and Employee class.

CompEmployees.java as follows

class CompEmoloyees{

ArrayListtotalEmps;

public ArrayList getTotalEmps() {

return totalEmps;

}

public ArrayList setTotalEmps(ArrayList totalEmps) {

this.otalEmps = totalEmps;

}

}

Employee.java

class Employee{

int empNo;

String empName;

setters and getters for empNo,empName;

}

My program

Here i have 100 employees of ArrayList named elist;

CompEmployees compEmployees = new CompEmployees();

compEmployees.setTotalEmps(elist);

session.setAttribute("total",compEmployees);

Please tell me how can we print the 100 employees in the browser by using logic iterate tag in the Jsp

[859 byte] By [mallik.svha] at [2007-11-27 6:18:27]
# 1
Just entering "logic:iterate" in google showed this: http://struts.apache.org/1.0.2/struts-logic.html#iterateAnd for any further Struts questions: stay at that site and ask their mailing list. It's their product.
CeciNEstPasUnProgrammeura at 2007-7-12 17:32:24 > top of Java-index,Java Essentials,New To Java...