>
> What would like to do is simply:
> <dtml-var "index_html.raw"> = <dtml-var "REQUEST['new_index_html']">
>
> I want my index_html.raw being equal to my new_index_html var!!!
>
>
> Pierre, more and more desesperate!!!!
>
Try:
<dtml-call "REQUEST.set('index_html.raw',new_index_html)">
will work!
PM