Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

ASP 内容轮播器 组件 (ASP 3.0)


ASP 内容轮播器组件

ASP 内容轮播器组件创建一个 ContentRotator 对象,每次访问者进入或刷新页面时都会显示不同的内容字符串。

一个名为内容调度文件(Content Schedule File)的文本文件包含有关内容字符串的信息。

内容字符串可以包含 HTML 标签,因此您可以显示 HTML 可以表示的任何类型的内容:文本、图像、颜色或超链接。

语法

<%
Set cr=Server.CreateObject("MSWC.ContentRotator")
%>

ASP 内容轮播器示例

以下示例每次访问者查看网页时都会显示不同的内容。

首先,创建一个名为“textads.txt”的文本文件,并将其放置在名为“text”的子文件夹中。

"textads.txt"

%% #3
<h2>今天真是美好的一天!</h2>

%% #3
<img src="smiley.gif">

%% #4
<a href="https://w3schools.org.cn">访问 W3Schools.com</a>

请注意每个内容字符串开头的 # 数字。这个数字是一个可选参数,表示 HTML 内容字符串的相对权重。在上面的文本文件中,内容轮播器将三分之十的时间显示第一和第二个内容字符串,四分之十的时间显示第三个字符串。

然后,创建一个 ASP 文件,并插入以下代码

示例

<html>
<body>
<%
set cr=server.createobject("MSWC.ContentRotator")
response.write(cr.ChooseContent("text/textads.txt"))
%>
</body>
</html>

显示示例 »


ASP 内容轮播器组件的方法

方法 描述 示例
ChooseContent 获取并显示内容字符串 <%
dim cr
Set cr=Server.CreateObject("MSWC.ContentRotator")
response.write(cr.ChooseContent("text/textads.txt"))
%>

输出

Smiley

GetAllContent 检索并显示文本文件中的所有内容字符串 <%
dim cr
Set cr=Server.CreateObject("MSWC.ContentRotator")
response.write(cr.GetAllContent("text/textads.txt"))
%>

输出

今天真是美好的一天!

Smiley

访问 W3Schools.com


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.