Link to home
Start Free TrialLog in
Avatar of MissBrucoMela
MissBrucoMela

asked on

Implementing a for circle with Struts custom tag

Is possibile implement a circle For with Struts custom tag Or I must use the JSTL core library?

Thanks
Avatar of searlas
searlas

Do you want to do the equivalent of for (int i =0; i < 10; i++) { ... }
Or, are you trying to iterate over a collection/array?

If you actually have something to iterate over, use the logic:iterate tag:
http://jakarta.apache.org/struts/userGuide/struts-logic.html#iterate
Avatar of MissBrucoMela

ASKER

I want to do something like :

for (int i =0; i < 10; i++) { ... }
 
and not use logic: iterate tag. Is it possible? If not possibile, how can I do this using the Iterate tag?
ASKER CERTIFIED SOLUTION
Avatar of searlas
searlas

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial