> Trying to run the following snippet of DTML within > top gives (not surprisingly) the correct image id > but fails to render the image. > > <dtml-with child> > <dtml-with childimage> > Image <dtml-var id> renders as <img src="<dtml-var id>"> > </dtml-with> > </dtml-with> This works: <dtml-with child> <dtml-var childimage> </dtml-with> --Rob