[Zope] Re: newbie question: make reference to a 'foreign' variable

Josef Meile jmeile@hotmail.com
Sat, 08 Feb 2003 16:26:35 +0100


 > 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