FormView.PagerStyle プロパティ
アセンブリ: System.Web (system.web.dll 内)
構文FormView コントロールのページ行のスタイルを表す TableItemStyle への参照。
解説PagerStyle プロパティを使用して、FormView コントロールのページ行の外観を制御します。ページ行は、ページング機能が有効になっている場合 (AllowPaging プロパティが true に設定されている場合) に表示され、ユーザーがコントロール内の別のページに移動できるようにするコントロールが含まれます。このプロパティは読み取り専用です。ただし、このプロパティが返す TableItemStyle オブジェクトのプロパティを設定することはできます。次のいずれかの方法を使用することにより、プロパティを宣言によって設定できます。
-
FormView コントロールの開始タグに、Property-Subproperty の形式で属性を指定します。ここで、Subproperty には、TableItemStyle オブジェクトのプロパティを指定します (例 : PagerStyle-ForeColor)。
Property.Subproperty の形式で、プロパティをプログラムによって設定することもできます (例 : PagerStyle.ForeColor)。通常、共通設定には、カスタムの背景色、前景色、およびフォントのプロパティが含まれます。
使用例PagerStyle プロパティを使用して、ページ行のスタイル設定を指定する方法を次の例に示します。
<%@ Page language="VB" %> <html> <body> <form runat="server"> <h3>FormView AllowPaging Example</h3> <asp:formview id="EmployeeFormView" datasourceid="EmployeeSource" allowpaging="true" datakeynames="EmployeeID" runat="server"> <pagersettings mode="Numeric" position="Bottom"/> <pagerstyle backcolor="LightBlue" horizontalalign="Center"/> <itemtemplate> <table> <tr> <td> <asp:image id="EmployeeImage" imageurl='<%# Eval("PhotoPath") %>' alternatetext='<%# Eval("LastName") %>' runat="server"/> </td> <td> <h3><%# Eval("FirstName") %> <%# Eval("LastName") %></h3> <%# Eval("Title") %> </td> </tr> </table> </itemtemplate> </asp:formview> <!-- 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="EmployeeSource" selectcommand="Select [EmployeeID], [LastName], [FirstName], [Title], [PhotoPath] From [Employees]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>
<%@ Page language="C#" %> <html> <body> <form runat="server"> <h3>FormView AllowPaging Example</h3> <asp:formview id="EmployeeFormView" datasourceid="EmployeeSource" allowpaging="true" datakeynames="EmployeeID" runat="server"> <pagersettings mode="Numeric" position="Bottom"/> <pagerstyle backcolor="LightBlue" horizontalalign="Center"/> <itemtemplate> <table> <tr> <td> <asp:image id="EmployeeImage" imageurl='<%# Eval("PhotoPath") %>' alternatetext='<%# Eval("LastName") %>' runat="server"/> </td> <td> <h3><%# Eval("FirstName") %> <%# Eval("LastName") %></h3> <%# Eval("Title") %> </td> </tr> </table> </itemtemplate> </asp:formview> <!-- 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="EmployeeSource" selectcommand="Select [EmployeeID], [LastName], [FirstName], [Title], [PhotoPath] From [Employees]" 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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
バージョン情報
参照FormView クラス
FormView メンバ
System.Web.UI.WebControls 名前空間
TableItemStyle
FormView.BottomPagerRow プロパティ
FormView.PageCount プロパティ
FormView.PageIndex プロパティ
FormView.PagerSettings プロパティ
PagerTemplate
TopPagerRow
RowStyle
FormView.EditRowStyle プロパティ
FormView.EmptyDataRowStyle プロパティ
FormView.FooterStyle プロパティ
FormView.HeaderStyle プロパティ
FormView.InsertRowStyle プロパティ
PageIndexChanged
PageIndexChanging
- FormView.PagerStyle プロパティのページへのリンク