AdRotator 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
AdRotator 클래스의 새 인스턴스를 초기화합니다.
public:
AdRotator();
public AdRotator ();
Public Sub New ()
예제
다음 코드 예제에는 만들고의 새 인스턴스를 초기화 하는 방법을 보여 줍니다.는 AdRotator 클래스입니다. 그런 다음 새 AdRotator 컨트롤이 컨트롤의 PlaceHolder 컬렉션에 Control.Controls 추가되고 Web Forms 페이지에 표시됩니다.
참고
다음 코드 샘플 단일 파일 코드 모델을 사용 하 고 코드 숨김 파일에 직접 복사 하는 경우 제대로 작동 하지 않을 수 있습니다. 이 코드 샘플.aspx 확장명이 있는 빈 텍스트 파일에 복사 해야 합니다. Web Forms 코드 모델에 대 한 자세한 내용은 참조 하세요. ASP.NET Web Forms 페이지 코드 모델합니다.
<%@ 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 클래스입니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET