[Zope] image file
Dieter Maurer
dieter@handshake.de
Wed, 29 Aug 2001 21:33:33 +0200 (CEST)
=?iso-8859-1?q?fdf=20dfdff?= writes:
> Please tell me, suppose i create a file and upload
> some
> file. then i go in file properties and assign it
> a name and value.
> now how can i view this name and value in another
> dtml document ?
Like you do for *any* property:
<dtml-var expr="object.property">
or maybe:
<dtml-with object>
....
<dtml-var property>
....
</dtml-with>
Maybe some background reading helps you: Zope Book or
<http://www.dieter.handshake.de/pyprojects/zope/book/chap3.html>
Dieter