Forum OpenACS Development: Re: Dynamic variable generataion in adp page

In a .tcl page (if I understand correctly this), you can do something like:

set varname "actual value"
set myothervar varname

and this will return you the value of varname:
[set $myothervar]

So, you might try in the .adp:

<%=[set $name(html)]%>

or something like that...

though, I dont know if will work with <include> ....