Demonstrates enumerating the ISYS catalog to display the result in a drop down list.
<%
Set ISYS = Application("ISYS")
Set ISYSCatalog = ISYS.CatalogWeb
%>
<select name="index">
<% For Each Item in ISYSCatalog %>
<option value="<%= Item.Path %>"> <%= Item.Name %> </option>
<% Next %>
</select>
|