다음을 통해 공유


PagerStyle.PageLabel 속성

정의

현재 페이지에 사용되는 레이블을 가져오거나 설정합니다. 기본값은 빈 문자열("")입니다. 이 API는 더 이상 사용되지 않습니다. ASP.NET 모바일 애플리케이션을 개발하는 방법에 대한 자세한 내용은 ASP.NET 있는 Mobile Apps & 사이트를 참조하세요.

public:
 property System::String ^ PageLabel { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
public string PageLabel { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.PageLabel : string with get, set
Public Property PageLabel As String

속성 값

현재 페이지에 사용되는 레이블입니다.

특성

예제

다음 예제에서는 사용 하는 방법에 설명 합니다 PageLabel 속성을 "페이지로 이동한 후" 페이지 레이블을 설정 합니다.

Private Sub Page_Load(ByVal sender As System.Object, _  
    ByVal e As System.EventArgs) Handles MyBase.Load  
    If Not IsPostBack  
        Form1.PagerStyle.NextPageText = "2"  
    End If  
    Form1.PagerStyle.StyleReference = "title"  
    Form1.PagerStyle.PageLabel = "Go to page"  
End Sub  
void Page_Load(object sender, EventArgs e)  
{  
    if(!IsPostBack)  
    {  
        Form1.PagerStyle.NextPageText = "2";  
    }  
    Form1.PagerStyle.StyleReference = "title";  
    Form1.PagerStyle.PageLabel = "Go to page"  
}  

설명

이 속성은 빈 문자열에 있으면 레이블이 없는 표시 됩니다. 레이블 형식 지정자를 포함할 수 있습니다 {0}{1}, 바뀌는 현재 페이지의 페이지 번호와 총 페이지에 각각 레이블을 렌더링 될 때입니다. 예를 들어, 형식 지정자 Page {0} of {1} 는 총 페이지 내에서 현재 위치를 표시 합니다.

참고

WML 디바이스에서이 속성을 렌더링 하지 않습니다.

적용 대상

추가 정보