[Zope] How i could concatenate the dtml-var and the text to another dtml-var

Christian Scholz cs@comlounge.net
Sat, 6 May 2000 17:38:43 +0200


Hi!

On Sat, May 06, 2000 at 03:43:25PM +0530, Zope Mailing Lists wrote:
> Some could tell me how i could concatenate the dtml-var and the text to
> another dtml-var
> 
> for e.g
> 
> <dtml-call "REQUEST.set('name2','courses')">
> <dtml-call "REQUEST.set('name3',join(%, name2, %))">

What about 

<dtml-call "REQUEST.set('name2','courses')">
<dtml-call "REQUEST.set('name3','%'+name2+'%')"> 



-- christian