I'm basically a newcomer to ASP and I was wondering if I could do something like this
Code:
<%
   Dim DB as Database
   Dim RS as Recordset

   Set DB = "DBQ=/db/products.mdb;DRIVER={MS Access (*.mdb)}"
   
   For Each RS in DB
         Response.Write "<li>" & RS.Name
   Next RS

%>
Also, If I can't do this, can I at least go thru a table getting all of the data from one field and making a list from this?