黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP Content Linking

asp content linking 組件

examples

嘗試一下 - 實(shí)例

content linking 組件
本例構(gòu)建一個(gè)內(nèi)容列表。

<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>

content linking 組件 2
本例使用 content linking 組件在一個(gè)文本文件所列的頁面間進(jìn)行導(dǎo)航。

<h1>
this is page 1!
</h1>

<%
set nl=server.createobject("mswc.nextlink")
if (nl.getlistindex("text/links2.txt")>1) then
%>

<a href="<%response.write(nl.getpreviousurl("text/links2.txt"))%>">previous page</a>
<%end if%>

<a href="<%response.write(nl.getnexturl("text/links2.txt"))%>">next page</a>

<p>the example uses the content linking component 
to navigate between the pages in a text file.</p>

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

asp content linking 組件

asp content linking 組件用于創(chuàng)建快捷便利的導(dǎo)航系統(tǒng)!

content linking 組件會(huì)返回一個(gè) nextlink 對(duì)象,這個(gè)對(duì)象用于容納需要導(dǎo)航網(wǎng)頁的一個(gè)列表。

語法

<%
set nl=server.createobject("mswc.nextlink")
%>

asp content linking 實(shí)例

首先,我們會(huì)創(chuàng)建一個(gè)文本文件 - "links.txt":

asp_intro.asp asp 簡介
asp_syntax.asp asp 語法
asp_variables.asp asp 變量
asp_procedures.asp asp 程序

上面的文本文件包含需要導(dǎo)航的頁面。頁面的排列順序應(yīng)該與它們的顯示順序相同,并包含對(duì)每個(gè)文件名的描述(使用制表符來分隔文件名和描述信息)。

注釋:如果您希望向列表添加頁面,或者改變?cè)诹斜碇械捻撁骓樞?,那么您需要做的僅僅是修改這個(gè)文本文件而已!導(dǎo)航會(huì)自動(dòng)更新!

然后我們創(chuàng)建一個(gè)引用文件,"nlcode.inc"。.inc 文件創(chuàng)建一個(gè) nextlink 對(duì)象來在 "links.txt" 中列出的頁面間進(jìn)行導(dǎo)航。

"nlcode.inc":

<%
dim nl
set nl=server.createobject("mswc.nextlink")
if (nl.getlistindex("links.txt")>1) then
response.write("previous page")
end if
response.write("next page")
%>

請(qǐng)?jiān)谖谋疚募?"links.txt" 列出的每個(gè) .asp 頁面中放置一行代碼:。這行代碼會(huì)在 "links.txt" 中列出每個(gè)頁面上引用 "nlcode.inc" 中的代碼,這樣導(dǎo)航就可以工作了。

asp content linking 組件的方法

方法 描述 實(shí)例
getlistcount 返回內(nèi)容鏈接列表文件中所列項(xiàng)目的數(shù)量。 <%
dim nl,c
set nl=server.createobject("mswc.nextlink")
c=nl.getlistcount("links.txt")
response.write("there are ")
response.write(c)
response.write(" items in the list")
%>

輸出:

there are 4 items in the list

getlistindex 返回在內(nèi)容鏈接列表文件中當(dāng)前條目的索引號(hào)。第一個(gè)條目的索引號(hào)是 1。如果當(dāng)前頁面不在內(nèi)容鏈接列表文件中,則返回 0。 <%
dim nl,c
set nl=server.createobject("mswc.nextlink")
c=nl.getlistindex("links.txt")
response.write("item number ")
response.write(c)
%>

輸出:

item number 3

getnextdescription 返回在內(nèi)容鏈接列表文件中所列的下一個(gè)條目的文本描述。如果在列表文件中沒有找到當(dāng)前文件,則返回列表中最后一個(gè)頁面的文本描述。 <%
dim nl,c
set nl=server.createobject("mswc.nextlink")
c=nl.getnextdescription("links.txt")
response.write("next ")
response.write("description is: ")
response.write(c)
%>

輸出:

next description is: asp variables

getnexturl 返回在內(nèi)容鏈接列表文件中所列的下一個(gè)條目的 url。如果在列表文件中沒有找到當(dāng)前文件,則返回列表中最后一個(gè)頁面的 url。 <%
dim nl,c
set nl=server.createobject("mswc.nextlink")
c=nl.getnexturl("links.txt")
response.write("next ")
response.write("url is: ")
response.write(c)
%>

輸出:

next url is: asp_variables.asp

getnthdescription 返在內(nèi)容鏈接列表文件中所列的第 n 個(gè)頁面的描述信息。 <%
dim nl,c
set nl=server.createobject("mswc.nextlink")
c=nl.getnthdescription("links.txt",3)
response.write("third ")
response.write("description is: ")
response.write(c)
%>

輸出:

third description is: asp variables

getnthurl 返回在內(nèi)容鏈接列表文件中所列的第 n 個(gè)頁面的 url。 <%
dim nl,c
set nl=server.createobject("mswc.nextlink")
c=nl.getnthurl("links.txt",3)
response.write("third ")
response.write("url is: ")
response.write(c)
%>

輸出:

third url is: asp_variables.asp

getpreviousdescription 返回在內(nèi)容鏈接列表文件中所列的前一個(gè)條目的文本描述。如果在列表文件中沒有找到當(dāng)前文件,則返回列表中第一個(gè)頁面的文本描述。 <%
dim nl,c
set nl=server.createobject("mswc.nextlink")
c=nl.getpreviousdescription("links.txt")
response.write("previous ")
response.write("description is: ")
response.write(c)
%>

輸出:

previous description is: asp variables

getpreviousurl 返回在內(nèi)容鏈接列表文件中所列的前一個(gè)條目的 url。如果在列表文件中沒有找到當(dāng)前文件,則返回列表中第一個(gè)頁面的 url。 <%
dim nl,c
set nl=server.createobject("mswc.nextlink")
c=nl.getpreviousurl("links.txt")
response.write("previous ")
response.write("url is: ")
response.write(c)
%>

輸出:

previous url is: asp_variables.asp


相關(guān)文章