I think you just have a misunderstanding of how it works. Let me explain. And this won't be accurate code, but just an example.
Ok, so that page gets requested as is. Here is the output
Now if we change the rendered property to true we get
So there
is a placeholder. The placeholder exists where the component is defined in the
JSP. It will show up where it should go as long as the rendered proeprty is set to true. It won't show up if set to false.
Side note: Obviously you'd want to use value binding for the rendered property rather than a static "true" or "false".
[ July 18, 2005: Message edited by: Gregg Bolinger ]