Hi, I need help on why my dynamic page reading doesns't work. As an example below, I have a DTML-Method called dtml_action. this dtml_action will read the parameter from page (from the same directory) that invoked it. dtml_action document: -------------------------------------------------- <dtml-var standard_html_header> <dtml-var page> <dtml-var standard_html_footer> ------------------------------------------------- As an example, my index_html need to diplay history_html document by using dtml_action. index_html document: ---------------------------------------------------------------------------- <dtml-if page> <dtml-var dtml_action?page=history_html> </dtml-if> ------------------------------------------------------------------------- The code inside index_html definitely doesn't work because there isn't such variable like 'dtml_action?page=history_html' But I just don't know the syntax. Can anyone help?