AdRotator-Konstruktor
Initialisiert eine neue Instanz der AdRotator-Klasse.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Syntax
'Declaration
Public Sub New
'Usage
Dim instance As New AdRotator
public AdRotator ()
public:
AdRotator ()
public AdRotator ()
public function AdRotator ()
Hinweise
Mit diesem Konstruktor können Sie eine neue Instanz der AdRotator-Klasse erstellen und initialisieren.
Beispiel
Im folgenden Codebeispiel wird das Erstellen und Initialisieren einer neuen Instanz der AdRotator-Klasse veranschaulicht. Das neue AdRotator-Steuerelement wird anschließend der Control.Controls-Auflistung eines PlaceHolder-Steuerelements hinzugefügt und auf der Web Forms-Seite angezeigt.
Hinweis
Im folgenden Codebeispiel wird das Einzeldatei-Codemodell verwendet. Das Beispiel funktioniert möglicherweise nicht, wenn es direkt in eine CodeBehind-Datei kopiert wird. Dieses Codebeispiel muss in eine leere Textdatei mit einer ASPX-Erweiterung kopiert werden. Weitere Informationen zum Web Forms-Codemodell finden Sie unter Codemodell für ASP.NET-Webseiten.
<%@ Page Language="VB" AutoEventWireup="True" %>
<html>
<head>
<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 runat="server">
<h3>AdRotator Constructor Example</h3>
<asp:Placeholder id=myPlaceHolder
runat="server"/>
</form>
</body>
</html>
<%@ Page Language="C#" AutoEventWireup="True" %>
<html>
<head>
<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 runat="server">
<h3>AdRotator Constructor Example</h3>
<asp:Placeholder id=myPlaceHolder
runat="server"/>
</form>
</body>
</html>
<%@ Page Language="JScript" AutoEventWireup="True" %>
<html>
<head>
<script runat="server">
function Page_Load(sender, e : EventArgs)
{
// Create an AdRotator control.
var rotator : AdRotator = new AdRotator();
// Set the control's properties.
rotator.AdvertisementFile = "Ads.xml";
// Add the control to the Controls collection of a
// PlaceHolder control.
myPlaceHolder.Controls.Add(rotator);
}
</script>
</head>
<body>
<form runat="server">
<h3>AdRotator Constructor Example</h3>
<asp:Placeholder id=myPlaceHolder
runat="server"/>
</form>
</body>
</html>
Plattformen
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
AdRotator-Klasse
AdRotator-Member
System.Web.UI.WebControls-Namespace
Control.Controls
Literal