AdRotator 构造函数 
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 AdRotator 类的新实例。
public:
 AdRotator();public AdRotator();Public Sub New ()示例
下面的代码示例演示如何创建和初始化 类的新实例 AdRotator 。 然后,新 AdRotator 控件将添加到 Control.Controls 控件的 PlaceHolder 集合中,并显示在“Web 窗体”页上。
注意
下面的代码示例使用单文件代码模型,如果直接复制到代码隐藏文件中,可能无法正常工作。 必须将此代码示例复制到扩展名为 .aspx 的空文本文件中。 有关 Web 窗体代码模型的详细信息,请参阅 ASP.NET Web 窗体页代码模型。
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>AdRotator Constructor Example</title>
<script runat="server">
      void Page_Load(Object sender, EventArgs e) 
      {
         // Create an AdRotator control.
         AdRotator rotator = new AdRotator();
         // Set the control's properties.
         rotator.AdvertisementFile = @"~\App_Data\Ads.xml";
         // Add the control to the Controls collection of a 
         // PlaceHolder control.  
         myPlaceHolder.Controls.Add(rotator);
      }
   </script>
</head>
<body>
   <form id="form1" runat="server">
      <h3>AdRotator Constructor Example</h3>
      <asp:Placeholder id="myPlaceHolder" 
           runat="server"/>
   </form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>AdRotator Constructor Example</title>
<script runat="server">
      Sub Page_Load(sender As Object, e As EventArgs) 
      
         ' Create an AdRotator control.
         Dim rotator As AdRotator = New AdRotator()
         ' Set the control's properties.
         rotator.AdvertisementFile = "~\App_Data\Ads.xml"
         ' Add the control to the Controls collection of a 
         ' PlaceHolder control.  
         myPlaceHolder.Controls.Add(rotator)
      
      End Sub
   </script>
</head>
<body>
   <form id="form1" runat="server">
      <h3>AdRotator Constructor Example</h3>
      <asp:Placeholder id="myPlaceHolder" 
           runat="server"/>
   </form>
</body>
</html>
注解
使用此构造函数创建和初始化 类的新实例 AdRotator 。