MSWC.NextLink的使用方法
2010-8-10编辑:feimeimei
在源码公开中用到了 Content Linking 组件,目的在于通过线性排列顺序列表来管理网页和网址间的超文本。如果你对这种解释有疑惑,看看 这里 ,我可没有一条一条加哟。
源.码
第一步内容顺序说明的文本文件,也就是“网页或网址的线性排列顺序文件”
,看看 列表文件 。
第二步首页内嵌程序
#8249;%
Set Mylink=Server.CreateObject
file=list.txt
Count=Mylink.GetListCount
for i=1 to Count
url=Mylink.GetNthURL
description=Mylink.GetNthDescription
%#8250;
#8249;a href=#8249;%=url%#8250;#8250;%=description%#8250;#8249;/a#8250;
#8249;% next %#8250;s
第三步各分页内嵌程序
#8249;%
Set Mylink=Server.CreateObject
file=list.txt
Count=Mylink.GetListCount
if Mylink.GetListIndex1 then
Response.Write #8249;a href= Mylink.GetPreviousURL _
上一篇 #8249;/a#8250;
End if
if Mylink.GetListIndex#8249;Count-1 then
Response.Write #8249;a href= Mylink.GetNextURL _
下一篇 #8249;/a#8250;
End if
Response.Write #8249;a href= Mylink.GetNthURL _
源码首页 #8249;/a#8250;
%#8250;
说.明
Content Linking List File 格式分为三列,列与列之间必须以 [Tab] 分隔。
网页或网址的 URL [描述文字[附加说明]]
网页或网址的 URL 参数表示所要的网页或网址,相对、绝对路径都可以。
描述文字参数是显示给用户的说明文字。
附加说明参数不会显示给用户,注解而已。
Content Linking 组件是 ASP 内置的重要组件,建立组件的语法为:
Set ObjectName=Server.CreateObject
Content Linking 的组件方法说明
方 法 格 式 说 明
GetListCount Int = GetListCount页面个数
GetListIndex Int = GetListIndex当前页面的顺序值
GetNthURL string = GetNthURL指定位置页面的地址
GetNthDescription string = GetNthDescription指定位置页面的描述
GetNextURL string = GetNextURL下一个页面的地址
GetNextDescription string = GetNextDescription下一个页面的描述
GetPreviousURL string = GePrevioustURL上一个页面的地址
GetPreviousDescription string = GetPreviousDescription上一个页面的描述
注.意
1 列表文件中记录的排列顺序,注意这个程序是将首页位置放在最后,循环起始和次数就会
因此不同。
2 GetNthURL 和 GetNthDescription 方法是取得指定位置页面的地址或描述,首页是显示