Content Rotator组件

发表于:2007-06-30来源:作者:点击数: 标签:
Content Rotator组件 该组件用于在一个网页上随机地显示不同的HTML内容。 % Set MagicCon=Server.CreateObject(“MSWC.ContentRotator”) % 文件 Content Schedule File 包含HTML字符串列表的文本文件。当在网页上显示HTML内容时,该组件在这些字符串中循环

Content Rotator组件

该组件用于在一个网页上随机地显示不同的HTML内容。

<% Set MagicCon=Server.CreateObject(“MSWC.ContentRotator”) %>

文件

Content Schedule File

包含HTML字符串列表的文本文件。当在网页上显示HTML内容时,该组件在这些字符串中循环。每一个入口都用双百分号(%%)标志。在%%号后是用于指明该HTML字符串显示的频繁程度的数字(用#做标志)和可有可无的注释(用//做标记)。

%% #2 //指明该HTML字符串显示的比例为1/2

<hr color=“red”>

欢迎加入迈至科

<hr color=“red”>

%% #1

<font size=+1>

Welcome to magicw3 technical co. Ltd

</font>

%% #1

<font color=“blue”>

magicw3 technical co. Ltd, ISP

</font>

方法 

ChooseContent(Content Schedule File)

从Content Schedule文件中返回要在网页中显示的HTML字符串。会根据在Content Schedule文件中设定的比例随机地返回不同的内容。Content Schedule File指明Content Schedule文件的路径。

GetAllContent(Content Schedule File)

从Content Schedule文件中返回所有的HTML字符串,并把它们显示在一个Web网页中,用水平标尺隔开。Content Schedule File指明Content Schedule文件的路径。

原文转自:http://www.ltesting.net