PagerStyle.PageLabel 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定目前頁面所用的標籤。 預設值為空字串 ("")。 這個 API 已經過時。 如需如何開發 ASP.NET 行動應用程式的資訊,請參閱 具有 ASP.NET 的Mobile Apps & Sites。
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 裝置不會轉譯此屬性。