ASP Table of contents
Table of contents
//To run this script you need random.txt
//You can find it here http://codelibary.com/temp/table.txt
<html>
<body>
<%
dim c
dim i
set nl=server.createobject("MSWC.Nextlink")
c = nl.GetListCount("table.txt")
i = 1
%>
<ul>
<%do while (i <= c) %>
<li><a href="<%=nl.GetNthURL("table.txt", i)%>">
<%=nl.GetNthDescription("table.txt", i)%></a>
<%
i = (i + 1)
loop
%>
</ul>
</body>
</html>