I've got a dtml-method index. There I want to call a picture, I do it like this: <dtml-var picture> That works fine... But now I want to get a picture which is in another folder. <dtml-var Images.picture> and <dtml-var Images/picture> don't work... how to do that? Thanks Sorin Marti
--On Dienstag, 4. März 2003 10:31 +0100 Sorin Marti <mas@semafor.ch> wrote:
I've got a dtml-method index. There I want to call a picture, I do it like this:
<dtml-var picture>
That works fine...
But now I want to get a picture which is in another folder.
<dtml-var Images.picture>
and
<dtml-var Images/picture>
don't work...
how to do that?
<dtml-var "Images['picture']"> -aj
SM> I've got a dtml-method index. There I want to call a picture, I do it SM> like this: SM> <dtml-var picture> SM> That works fine... SM> But now I want to get a picture which is in another folder. <dtml-with Images> <dtml-var picture> </dtml-with> or : <dtml-var "Images.picture"> or : <dtml-var "Images['picture']"> :) -- Geir Bækholt
participants (3)
-
Andreas Jung -
Geir Bækholt -
Sorin Marti