AdRotator Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the AdRotator class.
public:
AdRotator();
public AdRotator ();
Public Sub New ()
Examples
The following code example demonstrates how to create and initialize a new instance of the AdRotator class. The new AdRotator control is then added to the Control.Controls collection of a PlaceHolder control and displayed on the Web Forms page.
Note
The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information on the Web Forms code model, see ASP.NET Web Forms Page Code Model.
<%@ 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>
Remarks
Use this constructor to create and initialize a new instance of the AdRotator class.