ASP Content Rotator
asp content rotator 組件 (asp 3.0)
asp content rotator 組件
asp content rotator 組件創(chuàng)建一個 contentrotator 對象,每當(dāng)訪客進入網(wǎng)站或刷新頁面時,該對象就會顯示一段不同的內(nèi)容字符串。
有關(guān)內(nèi)容字符串的信息是包含在一個名為內(nèi)容目錄文件(content schedule file)的文本文件中。
內(nèi)容字符串可包含 html 標(biāo)簽,這樣您就可以顯示 html 可呈現(xiàn)的任何類型的內(nèi)容:文本、圖像、顏色或者超鏈接。
語法
<%
set cr=server.createobject("mswc.contentrotator")
%>
set cr=server.createobject("mswc.contentrotator")
%>
asp content rotator 實例
每當(dāng)訪客瀏覽網(wǎng)頁時,下面的實例就會顯示不同的內(nèi)容。
首先,創(chuàng)建一個名為 "textads.txt" 的文本文件,并把它放置在名為 "text" 的子文件夾中。
"textads.txt":
%% #3
%% #3

%% #4
this is a great day!!
%% #3

%% #4
請注意在每個內(nèi)容字符串起始位置的 # 號碼。這個號碼是一個可選的參數(shù),用來指示 html 內(nèi)容字符串的相對權(quán)重。在上面的文本文件中,content rotator 有十分之三的幾率顯示第一個內(nèi)容字符串,有十分之三的幾率顯示第二個內(nèi)容字符串,有十分之四的幾率顯示第三個字符串。
然后,創(chuàng)建一個 asp 文件,并插入下面的代碼:
實例
<%
set cr=server.createobject("mswc.contentrotator")
response.write(cr.choosecontent("text/textads.txt"))
%>
asp content rotator 組件的方法
方法 | 描述 | 實例 |
---|---|---|
choosecontent | 獲取并顯示某個內(nèi)容字符串。 | <% dim cr set cr=server.createobject("mswc.contentrotator") response.write(cr.choosecontent("text/textads.txt")) %> 輸出: |
getallcontent | 取回并顯示文本文件中所有的內(nèi)容字符串。 | <% dim cr set cr=server.createobject("mswc.contentrotator") response.write(cr.getallcontent("text/textads.txt")) %> 輸出: this is a great day!! |