[Zope] how to use the document object in a script

Dylan Reinhardt zope@dylanreinhardt.com
13 May 2003 10:57:15 -0700


On Tue, 2003-05-13 at 10:46, Dylan Reinhardt wrote:
> <input type=hidden value=<dtml-var title>>

One quick correction/note:

The above will work correctly only if the title contains no spaces.  A
more generally useful tag would be:

<input type=hidden value="<dtml-var title>">

Dylan