AdRotator控件的使用
發(fā)表時間:2024-01-10 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]下面的示例說明可以如何使用AdRotator控件在頁上動態(tài)顯示旋轉(zhuǎn)的廣告。 aspx文件:<%@ Page Language="C#"%><html><head></head><body><center>&...
下面的示例說明可以如何使用AdRotator控件在頁上動態(tài)顯示旋轉(zhuǎn)的廣告。
aspx文件:
<%@ Page Language="C#"%>
<html>
<head>
</head>
<body>
<center>
<form action="intro5.aspx" method="post" runat="server">
<asp:AdRotator AdvertisementFile="ads.xml" BorderColor="black" BorderWidth=1 runat="server"/>
</form>
</center>
</body>
</html>
ads.xml文件:
<Advertisements>
<Ad> <ImageUrl>/quickstart/aspplus/images/banner1.gif</ImageUrl>
<NavigateUrl>http://www.microsoft.com</NavigateUrl>
<AlternateText>Alt Text</AlternateText>
<Keyword>Computers</Keyword>
<Impressions>80</Impressions>
</Ad>
<Ad>
<ImageUrl>/quickstart/aspplus/images/banner2.gif</ImageUrl>
<NavigateUrl>http://www.microsoft.com</NavigateUrl>
<AlternateText>Alt Text</AlternateText>
<Keyword>Computers</Keyword>
<Impressions>80</Impressions>
</Ad>
<Ad>
<ImageUrl>/quickstart/aspplus/images/banner3.gif</ImageUrl>
<NavigateUrl>http://www.microsoft.com</NavigateUrl>
<AlternateText>Alt Text</AlternateText>
<Keyword>Computers</Keyword>
<Impressions>80</Impressions>
</Ad>
</Advertisements>