AdRotator コンストラクタ
AdRotator クラスの新しいインスタンスを初期化します。
名前空間: System.Web.UI.WebControls
アセンブリ: System.Web (system.web.dll 内)
構文
'宣言
Public Sub New
'使用
Dim instance As New AdRotator
public AdRotator ()
public:
AdRotator ()
public AdRotator ()
public function AdRotator ()
適用できません。
解説
このコンストラクタを使用して、AdRotator クラスの新しいインスタンスを作成し、初期化します。
使用例
AdRotator クラスの新しいインスタンスを作成および初期化する方法を次のコード例に示します。その後、新しい AdRotator コントロールが PlaceHolder コントロールの Control.Controls コレクションに追加され、Web フォーム ページに表示されます。
メモ : |
---|
次のコード サンプルはシングルファイル コード モデルを使用しており、分離コード ファイルに直接コピーされた場合は正常に動作しない可能性があります。このコード サンプルは、拡張子が .aspx の空のテキスト ファイルにコピーする必要があります。Web フォームのコード モデルの詳細については、「ASP.NET Web ページのコード モデル」を参照してください。 |
<%@ 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>
<%@ 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="JScript" 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">
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 id="form1" runat="server">
<h3>AdRotator Constructor Example</h3>
<asp:Placeholder id="myPlaceHolder"
runat="server"/>
</form>
</body>
</html>
プラットフォーム
Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition
Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。
バージョン情報
.NET Framework
サポート対象 : 3.0,2.0,1.1,1.0
参照
関連項目
AdRotator クラス
AdRotator メンバ
System.Web.UI.WebControls 名前空間
Control.Controls
Literal