Help > Web Development > Object Reference > Code Samples > ASP > Enumerating the index catalog
<a name="kanchor584"></a>Enumerating the ISYS catalog
Demonstrates enumerating the ISYS catalog to display the result in a drop down list.

<% ' Get the stored ISYS ASP object, created in the Global.asa Set ISYS = Application("ISYS") ' Get the ISYS web catalog Set ISYSCatalog = ISYS.CatalogWeb %> <select name="index"> <% For Each Item in ISYSCatalog %> <option value="<%= Item.Path %>"> <%= Item.Name %> </option> <% Next %> </select>