Hi, everyone. I've got an images directory in my root, and different directories within it (top, mainbody) for organizing my images. I'd really like to reference them like this (from my root folder): <dtml-var name="images/top/logo_png"> but apparently I can't use / in a name. So how exactly do I reference these images? I can do this: <IMG src="&dtml-URL1;/images/top/logo_png"> but that seems kind of hacky, considering the DTML system is supposed to inherently know how to deal with images. Any help would be appreciated. Thanks! -- Colin Fox cfox@crystalcherry.com CF Consulting Inc. GPG Fingerprint: D8F0 84E7 E7CC 5C6C 9982 F1A7 A3EB 6EA3 BC97 572F
Since your signature attachement doens't work well with outlook express I can't be bothered to quote your message. I really don't understand some mail softwares desire for making a simple text-only mail into multi-part attachements. Anyway: try <dtml-var images.something.logo_png>
On Fri, Mar 29, 2002 at 09:45:31PM +0100, Lennart Regebro wrote:
Anyway: try <dtml-var images.something.logo_png>
KeyError. Do <dtml-var "images.something.logo_png"> instead. Oleg. -- Oleg Broytmann http://phd.pp.ru/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.
participants (3)
-
Colin Fox -
Lennart Regebro -
Oleg Broytmann