10 Oct
1999
10 Oct
'99
7:27 p.m.
You need to use objectValues() for this. Note that you can look for special objects with this notation. objectValues(['Folder','File', 'DTML Method']) For example this would list all objects in the subfolder test. <!--#var standard_html_header--> <dtml-in "test.objectValues()"> <dtml-with sequence-item> <dtml-var id><BR> </dtml-with> </dtml-in> <!--#var standard_html_footer--> HTH __Janko