Can't use JSTL 1.1 EL functions without errors

2004-03-11 Thread Thomas Forrester
I am trying to use a JSTL EL function (fn:toUpperCase), although this problem occurs with any function. I think it has something to do with my setup. After looking around, I realised I needed to use a Servlet 2.4 web.xml . No I have done that I get another error. If I use code like this: %@

How to populate a FORM List object in template text for N results

2004-03-12 Thread Thomas Forrester
How do I write out template HTML to populate a FORM LIST object, from a SQL query result set. For example: sql:query var=clientResult scope=page select CLIENT_NAME from CLIENT /sql:query // Now given that I don't know how many rows I will get back, I can't write out N number

RE: How to populate a FORM List object in template text for N results

2004-03-12 Thread Thomas Forrester
. c:forEach items=${clientResult} var=row option value=c:out value=${row.value}/c:out value=${row.text}//option /c:forEach Replace row.value and row.text with the access method for the variable in the row you're trying to dump. Martin -Oorspronkelijk bericht- Van: Thomas Forrester