jstl while loop

how do i do this using jstl, since there's no while tag?

CaseStudy myCase = CaseStudyManager.getCaseStudy(caseStudyId);

...

do{

...

myCase = myCase.getPriorCase();

}while (myCase !=null);

[383 byte] By [tnguyen1973a] at [2007-11-27 11:42:29]
# 1

You don't do it in JSTL.

You write a helper function which gets the correct case to display on the JSP.

If you are using a JSP2.0 container you could use an EL function for it.

evnafetsa at 2007-7-29 17:44:25 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

MicroNova YUZU JSP tag library (https://micronova-yuzu.dev.java.net) contains support for "Dynamic Iterator" which can be used to create a "while" loop. Hope this helps.

mnagata@deva at 2007-7-29 17:44:25 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...