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

空のデータ行の外観を設定できる TableItemStyle への参照。

EmptyDataRowStyle プロパティを使用して、FormView コントロールの空のデータ行の外観を制御します。空のデータ行は、コントロールにバインドされているデータ ソースにレコードが格納されていない場合に表示されます。このプロパティは読み取り専用です。ただし、このプロパティが返す TableItemStyle オブジェクトのプロパティを設定することはできます。次のいずれかの方法を使用することにより、プロパティを宣言によって設定できます。
-
FormView コントロールの開始タグに、Property-Subproperty の形式で属性を指定します。ここで、Subproperty には、TableItemStyle オブジェクトのプロパティを指定します (例 : EmptyDataRowStyle-ForeColor)。
-
FormView コントロールの開始タグと終了タグの間で <EmptyDataRowStyle> 要素を入れ子にします。
Property.Subproperty の形式で、プロパティをプログラムによって設定することもできます (例 : EmptyDataRowStyle.ForeColor)。通常、共通設定には、カスタムの背景色、前景色、およびフォントのプロパティが含まれます。

EmptyDataRowStyle プロパティを使用して、レコードが格納されていないデータ ソースに FormView コントロールがバインドされている場合に表示される空のデータ行に、カスタム スタイルを指定する方法を次の例に示します。
<%@ Page language="VB" %> <html> <body> <form runat="server"> <h3>FormView EmptyDataText Example</h3> <asp:formview id="EmployeeFormView" datasourceid="EmployeeSource" allowpaging="true" datakeynames="EmployeeID" emptydatatext="No records available." runat="server"> <EmptyDataRowStyle BackColor="Red" forecolor="White" font-size=14 font-italic="true" height="100"/> <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> <pagersettings position="Bottom" mode="NextPrevious"/> </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. --> <!-- The select query for the following SqlDataSource --> <!-- control is intentionally set to return no results --> <!-- to demonstrate the empty data row. --> <asp:sqldatasource id="EmployeeSource" selectcommand="Select [EmployeeID], [LastName], [FirstName], [Title], [PhotoPath] From [Employees] Where [EmployeeID]=1000" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>
<%@ Page language="C#" %> <html> <body> <form runat="server"> <h3>FormView EmptyDataText Example</h3> <asp:formview id="EmployeeFormView" datasourceid="EmployeeSource" allowpaging="true" datakeynames="EmployeeID" emptydatatext="No records available." runat="server"> <EmptyDataRowStyle BackColor="Red" forecolor="White" font-size=14 font-italic="true" height="100"/> <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> <pagersettings position="Bottom" mode="NextPrevious"/> </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. --> <!-- The select query for the following SqlDataSource --> <!-- control is intentionally set to return no results --> <!-- to demonstrate the empty data row. --> <asp:sqldatasource id="EmployeeSource" selectcommand="Select [EmployeeID], [LastName], [FirstName], [Title], [PhotoPath] From [Employees] Where [EmployeeID]=1000" 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に収録されているすべての辞書からFormView.EmptyDataRowStyle プロパティを検索する場合は、下記のリンクをクリックしてください。

- FormView.EmptyDataRowStyle プロパティのページへのリンク