The GetNthURL method returns the URL of the Nth item in the Content Linking List file.
NextLink.GetNthURL( listURL, i )
This method returns a string.
A more complete example is at the bottom of Content Linking Component.
--- NextLink_GetNthURL.asp ---
<%
ListFile = "/Data/nextlink.txt"
Set objNextLink = Server.CreateObject("MSWC.NextLink")
TotalLinks = objNextLink.GetListCount(ListFile)
i = 1
For i = 1 To TotalLinks
%>
<A HREF="<%=objNextLink.GetNthURL(ListFile, i)%>">
<%=objNextLink.GetNthDescription(ListFile, i)%>
</A><BR>
<%
Next
%>
GetNextURL, GetPreviousURL, GetNthDescription