ASP Content Linking 組件

嘗試一下 - 實例
Content Linking 組件
本例構建一個內容列表。
Content Linking 組件 2
本例使用 Content Linking 組件在一個文本檔所列的頁面間進行導航。
ASP Content Linking 組件
ASP Content Linking 組件用於創建快捷便利的導航系統!
Content Linking 組件會返回一個 Nextlink 對象,這個對象用於容納需要導航網頁的一個列表。
語法
Set nl=Server.CreateObject("MSWC.NextLink")
%>
ASP Content Linking 實例
首先,我們會創建一個文本檔 - "links.txt":
asp_syntax.asp ASP 語法
asp_variables.asp ASP 變數
asp_procedures.asp ASP 程式
上面的文本檔包含需要導航的頁面。頁面的排列順序應該與它們的顯示順序相同,並包含對每個檔案名的描述(使用跳位字元來分隔檔案名和描述資訊)。
注釋:如果您希望向列表添加頁面,或者改變在列表中的頁面順序,那麼您需要做的僅僅是修改這個文本檔而已!導航會自動更新!
然後我們創建一個引用檔,"nlcode.inc"。.inc 檔創建一個 NextLink 對象來在 "links.txt" 中列出的頁面間進行導航。
"nlcode.inc":
dim nl
Set nl=Server.CreateObject("MSWC.NextLink")
if (nl.GetListIndex("links.txt")>1) then
Response.Write("<a href='" & nl.GetPreviousURL("links.txt"))
Response.Write("'>Previous Page</a>")
end if
Response.Write("<a href='" & nl.GetNextURL("links.txt"))
Response.Write("'>Next Page</a>")
%>
請在文本檔 "links.txt" 列出的每個 .asp 頁面中放置一行代碼:<!-- #include file="nlcode.inc"-->。這行代碼會在 "links.txt" 中列出每個頁面上引用 "nlcode.inc" 中的代碼,這樣導航就可以工作了。
ASP Content Linking 組件的方法
方法 | 描述 | 實例 |
---|---|---|
GetListCount | 返回內容鏈接列表檔中所列專案的數量。 | <% 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 | 返回在內容鏈接列表檔中當前條目的索引號。第一個條目的索引號是 1。如果當前頁面不在內容鏈接列表檔中,則返回 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 | 返回在內容鏈接列表檔中所列的下一個條目的文本描述。如果在列表檔中沒有找到當前檔,則返回列表中最後一個頁面的文本描述。 | <% 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 | 返回在內容鏈接列表檔中所列的下一個條目的 URL。如果在列表檔中沒有找到當前檔,則返回列表中最後一個頁面的 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 個頁面的描述資訊。 | <% 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 個頁面的 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 | 返回在內容鏈接列表檔中所列的前一個條目的文本描述。如果在列表檔中沒有找到當前檔,則返回列表中第一個頁面的文本描述。 | <% 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 | 返回在內容鏈接列表檔中所列的前一個條目的 URL。如果在列表檔中沒有找到當前檔,則返回列表中第一個頁面的 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 |