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