beno wrote: > Hi; > I know one cannot nest DTML objects, but the below lets you know what > I'm trying to accomplish. What is the correct syntax? > > <dtml-let folder="<dtml-var id>"> If you want to get the id of an object, you should use getId(): <dtml-let folder="getId()"> ... </dtml-let> -mj