passing parameters to bean function???

2004-05-14 Thread John MccLain
Here is something I have to be missing. I have a bean, and in my jstl page, I can set bean properties via the c:set tag and access the properties via the EL. syntax ${...}. This is all well and good, BUT how do I call a bean function that takes parameters without using a jsp scriptlet?? - My

Re: passing parameters to bean function???

2004-05-14 Thread Justyna Horwat
With JSP 2.0 you can avoid scriptlets by defining a function that takes parameters. Here is some information that describes how functions work: http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPIntro7.html http://www.javaworld.com/javaworld/jw-05-2003/jw-0523-calltag.html Justyna John MccLain