Content Linking 组件

代码:

<!DOCTYPE html>

<html>

<body>

 

<p>

The example below builds a table of contents.

</p>

 

<%

dim c

dim i

set nl=server.createobject("MSWC.Nextlink")

c = nl.GetListCount("text\links.txt")

i = 1

%>

<ul>

<%do while (i <= c) %>

<li><a href="<%=nl.GetNthURL("text\links.txt", i)%>">

<%=nl.GetNthDescription("text\links.txt", i)%></a>

<%

i = (i + 1)

loop

%>

</ul>

<p>

The text file contains a list of page urls

and link descriptions. It contains one line of text for each page. Note that the url and

description MUST be separated by the TAB character.

</p>

<p>

<a href="text/links.txt"><img src="/images/btn_view_text.gif"></a>

</p>

</body>

</html>

相关文章