RE: Problems with c:forEach and c:redirect

2004-02-12 Thread Kris Schneider
It should probably also be mentioned that the code in the JSP really looks like it belongs in a servlet or MVC controller component (or a helper/delegate used by one those). If all you're doing is computation and then a redirect, what do you need a JSP for? Some of it even looks like it would

RE: Problems with c:forEach and c:redirect

2004-02-12 Thread stephen
That solved the problem beautifully. Thanks for the help. As for the conversation over whether this code is better suited as a servlet, the general answer would be yes. However, due to some expected maintenance issues here there has been a decision made to try to limit Java code as much as

RE: Problems with c:forEach and c:redirect

2004-02-12 Thread rick
Using that reasoning, your management will be hiring VB programmers soon ;-) On Thu, 12 Feb 2004 11:52 , [EMAIL PROTECTED] sent: That solved the problem beautifully. Thanks for the help. As for the conversation over whether this code is better suited as a servlet, the general answer would be

Subtracting 2 values from different collections using for:each and el

2004-02-12 Thread Adam Bickford
In a nutshell, I want to iterate over a collection and subtract a value from a different collection with the same position as the current collection. The problem is, I don't know how to reference the current iterator. For example, how would I do something like this: int[] a =

RE: Subtracting 2 values from different collections using for:each and el

2004-02-12 Thread Karr, David
Read the specification. These questions are easily answered there. In short, use the varStatus attribute. -Original Message- From: Adam Bickford [mailto:[EMAIL PROTECTED] Sent: Thursday, February 12, 2004 12:36 PM To: Tag Libraries Users List Subject: Subtracting 2 values from