GridView.PagerSettings プロパティ
アセンブリ: System.Web (system.web.dll 内)

GridView コントロールのページャ ボタンのプロパティを設定できるようにする PagerSettings オブジェクトへの参照。

PagerSettings プロパティを使用して、GridView コントロールのページ行の設定を制御します。(AllowPaging プロパティを true に設定することによって) ページング機能が有効になっている場合は、ページ行が表示されます。ページ行には、ユーザーがコントロール内の別のページに移動できるようにするコントロールが含まれています。このプロパティは読み取り専用です。ただし、このプロパティが返す PagerSettings オブジェクトのプロパティを設定することはできます。次のいずれかの方法を使用することにより、プロパティを宣言によって設定できます。
-
GridView コントロールの開始タグに、Property-Subproperty の形式で属性を指定します。ここで、Subproperty には、PagerSettings オブジェクトのプロパティを指定します (例 : PagerSettings-Mode)。
Property.Subproperty の形式で、プロパティをプログラムによって設定することもできます (例 : PagerStyle.Mode)。通常、共通設定には、ページ行の表示モードと、ナビゲーション コントロールのカスタム テキストまたはイメージが含まれます。
Topic | Location |
---|---|
方法 : GridView Web サーバー コントロールで既定のページングを有効にする | Visual Studio での ASP .NET Web アプリケーションの作成 |

PagerSettings プロパティを宣言によって設定する方法を次のコード例に示します。ページ行のフォントが青色に設定され、背景が薄青色に設定されます。
<%@ Page language="VB" %> <html> <body> <form runat="server"> <h3>GridView AllowPaging Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSource" autogeneratecolumns="true" emptydatatext="No data available." allowpaging="true" runat="server"> <pagersettings mode="Numeric" position="Bottom" pagebuttoncount="10"/> <pagerstyle backcolor="LightBlue" height="30px" verticalalign="Bottom" horizontalalign="Center"/> </asp:gridview> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomersSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>
<%@ Page language="C#" %> <html> <body> <form runat="server"> <h3>GridView AllowPaging Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSource" autogeneratecolumns="true" emptydatatext="No data available." allowpaging="true" runat="server"> <pagersettings mode="Numeric" position="Bottom" pagebuttoncount="10"/> <pagerstyle backcolor="LightBlue" height="30px" verticalalign="Bottom" horizontalalign="Center"/> </asp:gridview> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomersSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からGridView.PagerSettings プロパティを検索する場合は、下記のリンクをクリックしてください。

- GridView.PagerSettings プロパティのページへのリンク