|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
由于ASP提供的是一对多的服务,所以用户的一些特殊需求很难得到满足。转载:ASP佳构屋钱丰云
from:http://asp.superexpert.com/code/code.asp?cid=88
ThaAdRotatorcomponentenablesyoutoshowbanneradvertisementswithdifferentfrequencies.This
componenthasonemethod,GetAdvertisement(),whichdisplaysabanneradvertisementonapage.
BeforeyoucanusetheAdRotatorcomponent,youneedtocreatetwospecialfiles:theRotatorSchedule
FileandtheRedirectionFile.TheRotatorScheduleFilelistsinformationaboutallthebanner
advertisementsthatshouldbeshown.TheRedirectionFileisusedtorecordhowfrequentlyeach
advertisementisclicked.
ThethreefilesbelowdemonstratehowtousetheAdRotatorComponent.ClickViewDemotoseea"live"
demonstrationofthiscomponent.
Listing1.0-adrot.asp
-------------------------------
<html>
<head><title>adrot.asp</title></head>
<body>
<%
SetmyAd=Server.CreateObject("MSWC.AdRotator")
%>
<center><%=myAd.GetAdvertisement("adrot.txt")%></center>
<p>
Clickontheimageabovetovisitoursponsor.
</body>
</html>
---------------------------------------
Listing2.0-adrot.txt
---------------------------------------
REDIRECT/adredir.asp
WIDTH468
HEIGHT60
BORDER1
*
kidsOrg.gif
http://www.kidsOrg.com
kidsOrg
60
volunteer.gif
http://www.volunteer.com
Volunteer
40
------------------------------------------
Listing3.0-adredir.asp
------------------------------------------
<html>
<head><title>adredir.asp</title></head>
<body>
<h3>Thisistheadredir.aspfile</h3>
Normally,youwouldusethisfiletoredirectauser
totheadvertisershomepage.Youcanretrieveinfo
aboutwhichadtheuserclickedbyexaminingthefollowing
querystringvariables:
<p><b>URL:</b><%=Request("url")%>
<p><b>IMAGE:</b><%=Request("image")%>
</body>
</html>
</p>使用cdonts,可以发送、查看邮件,实现webmail的功能。结合wsh,可以实现对nt主机的管理,如nt用户管理、iis虚拟主机设置、exchange邮箱设置等等,就像管理本地机一样方便。 |
|