Re: Include tag, dynamic param

2003-12-02 Thread Tim Funk
2 things 1) Are you trying to use el? If so you need a $ in front of {. You also need your web.xml to state that you are using el. 2) For the RT expression - make sure you tag lib declaration allows runtime expressions. For both of the above - there are plenty of net articles on the specifics

Include tag, dynamic param

2003-12-01 Thread Peter Maas
In the documentation for the include tag I read that something like: jsp:include page=slideEvents.jsp flush=true jsp:param name=BroadcastId value={parameterValue | %=BroadcastId%}/ /jsp:include Should work... This compiles / and runs... but the expression is never

Re: Include tag, dynamic param

2003-12-01 Thread Christopher Schultz
Peter, jsp:include page=slideEvents.jsp flush=true jsp:param name=BroadcastId value={parameterValue | %=BroadcastId%}/ /jsp:include Should work... This compiles / and runs... but the expression is never evaluated What do you get in the page source when it runs?

Re: Include tag, dynamic param

2003-12-01 Thread Peter Maas
What do you get in the page source when it runs? Do you get jsp:param name=BroadcastId value={parameterValue | %= BroadcastId %} / ?? If so, then something is terribly wrong. If you get the include okay, but the value of BroadcastId is {parameterValue | %= BroadcastId %}, then something else