Hi,

I have a question. How can I use variables declared in other pieces of java
code withing my JSP within a <c:if> piece of code?

example:

<%
  int i = 5;
  * now to a sql call with sql tags and get some results *
  <c:if test="${row.ID == i}">
    etc.
%>

I cannot get that row.ID == i to work. Also tried <%= i %>, but that causes
casting exceptions.

Alternatively, how can I make SQL results available to other pieces of Java.
At the moment I do a <c:set> and then the other code gets the variable from
the scope it was set to, but it seems a bit tedious... is there a shorter
way?

Thanks!

Charl


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to