NumericPagerField.NextPageText 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定為下一頁按鈕顯示的文字。
public:
property System::String ^ NextPageText { System::String ^ get(); void set(System::String ^ value); };
public string NextPageText { get; set; }
member this.NextPageText : string with get, set
Public Property NextPageText As String
屬性值
為下一頁按鈕顯示的文字。 默認值為 “...”。
範例
下列範例示範如何自定義控件中 DataPager 呼叫器字段下一頁按鈕所顯示的文字。
<%@ Page language="C#" %>
<!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 id="Head1" runat="server">
<title>NumericPagerField Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>NumericPagerField Example</h3>
<h4>Products List</h4>
<asp:ListView runat="server" ID="ProductListView"
DataSourceID="ProductsDataSource"
DataKeyNames="ProductID"
GroupItemCount="2">
<LayoutTemplate>
<table cellpadding="2" width="640px" runat="server" id="tblProducts">
<tr runat="server" id="groupPlaceholder">
</tr>
</table>
<br />
<asp:DataPager ID="DataPager1" runat="server" PageSize="6" >
<Fields>
<asp:NumericPagerField
ButtonType="Button"
ButtonCount="15"
NextPageText="Next >>"
PreviousPageText="Previous <<" />
</Fields>
</asp:DataPager>
</LayoutTemplate>
<GroupTemplate>
<tr runat="server" id="ProductRow">
<td runat="server" id="itemPlaceholder"></td>
</tr>
</GroupTemplate>
<ItemTemplate>
<td runat="server">
<asp:Image ID="ProductImage" runat="server"
ImageUrl='<%#"~/images/" + Eval("ThumbnailPhotoFileName") %>' />
<div>
<asp:Label ID="ProductName" runat="server"
Text='<%# Eval("Name") %>'
Font-Italic="true" />
<br />
Price:
<asp:Label ID="Price" runat="server" Text='<%# Eval("ListPrice", "{0:c}")%>' />
<br /><br />
</div>
</td>
</ItemTemplate>
</asp:ListView>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the AdventureWorks sample database. Use an ASP.NET -->
<!-- expression to retrieve the connection string value -->
<!-- from the Web.config file. -->
<asp:SqlDataSource ID="ProductsDataSource" runat="server"
ConnectionString="<%$ ConnectionStrings:AdventureWorks_DataConnectionString %>"
SelectCommand="SELECT P.ProductID, P.Name, P.Color, P.ListPrice,
PF.ThumbnailPhotoFileName, P.Size
FROM Production.Product AS P
INNER JOIN Production.ProductProductPhoto AS PPF ON P.ProductID = PPF.ProductID
INNER JOIN Production.ProductPhoto AS PF ON PPF.ProductPhotoID = PF.ProductPhotoID" >
</asp:SqlDataSource>
</form>
</body>
</html>
<%@ Page language="VB" %>
<!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 id="Head1" runat="server">
<title>NumericPagerField Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>NumericPagerField Example</h3>
<h4>Products List</h4>
<asp:ListView runat="server" ID="ProductListView"
DataSourceID="ProductsDataSource"
DataKeyNames="ProductID"
GroupItemCount="2">
<LayoutTemplate>
<table cellpadding="2" width="640px" runat="server" id="tblProducts">
<tr runat="server" id="groupPlaceholder">
</tr>
</table>
<br />
<asp:DataPager ID="DataPager1" runat="server" PageSize="6" >
<Fields>
<asp:NumericPagerField
ButtonType="Button"
ButtonCount="15"
NextPageText="Next >>"
PreviousPageText="Previous <<" />
</Fields>
</asp:DataPager>
</LayoutTemplate>
<GroupTemplate>
<tr runat="server" id="ProductRow">
<td runat="server" id="itemPlaceholder"></td>
</tr>
</GroupTemplate>
<ItemTemplate>
<td runat="server">
<asp:Image ID="ProductImage" runat="server"
ImageUrl='<%#"~/images/" & Eval("ThumbnailPhotoFileName") %>' />
<div>
<asp:Label ID="ProductName" runat="server"
Text='<%# Eval("Name") %>'
Font-Italic="true" />
<br />
Price:
<asp:Label ID="Price" runat="server" Text='<%# Eval("ListPrice", "{0:c}")%>' />
<br /><br />
</div>
</td>
</ItemTemplate>
</asp:ListView>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the AdventureWorks sample database. Use an ASP.NET -->
<!-- expression to retrieve the connection string value -->
<!-- from the Web.config file. -->
<asp:SqlDataSource ID="ProductsDataSource" runat="server"
ConnectionString="<%$ ConnectionStrings:AdventureWorks_DataConnectionString %>"
SelectCommand="SELECT P.ProductID, P.Name, P.Color, P.ListPrice,
PF.ThumbnailPhotoFileName, P.Size
FROM Production.Product AS P
INNER JOIN Production.ProductProductPhoto AS PPF ON P.ProductID = PPF.ProductID
INNER JOIN Production.ProductPhoto AS PF ON PPF.ProductPhotoID = PF.ProductPhotoID" >
</asp:SqlDataSource>
</form>
</body>
</html>
備註
當 屬性 ButtonType 設定 ButtonType.Image為 時,屬性中指定的 NextPageText 文字會當做影像的替代文字使用。 在支援工具提示的瀏覽器中,此文字也會顯示為對應按鈕的工具提示。
此屬性的值會儲存在檢視狀態中。 它可以使用設計工具自動儲存到資源檔。 如需詳細資訊,請參閱 LocalizableAttribute和全球化和當地語系化。