다음을 통해 공유


Form.PagerStyle 속성

정의

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

public:
 property System::Web::UI::MobileControls::PagerStyle ^ PagerStyle { System::Web::UI::MobileControls::PagerStyle ^ get(); };
public System.Web.UI.MobileControls.PagerStyle PagerStyle { get; }
member this.PagerStyle : System.Web.UI.MobileControls.PagerStyle
Public ReadOnly Property PagerStyle As PagerStyle

속성 값

폼의 페이지 매김 UI를 렌더링하는 데 사용되는 스타일입니다.

예제

다음 코드 예제를 사용 하는 방법에 설명 합니다 PagerStyle 속성입니다. 이 코드 예제는 속성에 대 한 더 큰 예제에서 ControlToPaginate 입니다.

void Page_Load(object sender, EventArgs e)
{
    // Set the pager text properties
    if (!IsPostBack)
        Form1.PagerStyle.NextPageText = "Go Next >";
    else
    {
        // For postback, set different text
        Form1.PagerStyle.NextPageText = "Go More >";
        Form1.PagerStyle.PreviousPageText = "< Go Prev";
    }
}
Private Sub Page_Load(ByVal sender As Object, _
    ByVal e As EventArgs)
    
    ' Set the pager text properties
    If Not IsPostBack Then
        Form1.PagerStyle.NextPageText = "Go Next >"
    Else
        ' For postback, set different text
        Form1.PagerStyle.NextPageText = "Go More >"
        Form1.PagerStyle.PreviousPageText = "< Go Prev"
    End If
End Sub

설명

이 속성이 프로그래밍 방식으로 설정되면 각 요청에 대해 유지되지 않습니다. 속성이 선언적으로 설정된 경우 속성은 각 요청에 대해 유지됩니다.

적용 대상

추가 정보