> suppose i have two folders A and B. > how do i make a reference to a dtml variable in folder > B from folder A ? > <dtml-var /B/variable> didnt work.... :( You could try: <dtml-with B> <dtml-var variable> </dtml-with> or perhaps <dtml-var expr="B.variable"> Regards, Josef