JSTL Tag in a directive.

2003-07-05 Thread Rick Ross
I can't seem to get this to work: %@ includes file=c:out value='${includePage}' / % I didn't see anything in the Spec that suggests that it would violate spec, but it wasn't mentioned either (as far as I saw.) Since I need the contents of includePage to be processed as JSP, I think I am SOL

Re: JSTL Tag in a directive.

2003-07-05 Thread N. Chen
you can use c:import instead of %@ include, i think that would solve your problem. nick On Sat, 5 Jul 2003, Rick Ross wrote: I can't seem to get this to work: %@ includes file=c:out value='${includePage}' / % I didn't see anything in the Spec that suggests that it would violate spec, but

Re: JSTL Tag in a directive.

2003-07-05 Thread Hans Bergsten
Rick Ross wrote: I can't seem to get this to work: %@ includes file=c:out value='${includePage}' / % I didn't see anything in the Spec that suggests that it would violate spec, but it wasn't mentioned either (as far as I saw.) Rick, time to read a good book about JSP ;-) There are two ways to

Re: JSTL Tag in a directive.

2003-07-05 Thread Hans Bergsten
I think I missed an important point, see intermixed below. Hans Bergsten wrote: Rick Ross wrote: I can't seem to get this to work: %@ includes file=c:out value='${includePage}' / % I didn't see anything in the Spec that suggests that it would violate spec, but it wasn't mentioned either (as