> <dtml-call "RESPONSE.redirect('processform?withparam=<dtml-var param>')"> Yes, because anything in quotes in a dtml-var is a python expression. What you want is: <dtml-call "RESPONSE.redirect('processform?withparam='+param)"> cheers, Chris