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


Values プロパティを使用して DataKey オブジェクト内のすべてのキー フィールドを格納している IOrderedDictionary オブジェクトを取得します。IOrderedDictionary は、レコードのキー フィールドを反復処理するためによく使用されます。

Values プロパティから返される IOrderedDictionary オブジェクトを反復処理するコード例を次に示します。
<%@ Page language="VB" %> <script runat="server"> Sub CustomerDetailsView_DataBound(ByVal sender As Object, ByVal e As EventArgs) Handles CustomerDetailsView.DataBound ' Retrieve the IOrderedDictionary object that contains the key field values. Dim allKeysDictionary As IOrderedDictionary = CustomerDetailsView.DataKey.Values ' Display the the value of the key fields. MessageLabel.Text = "The key field values for the displayed record are: <br/><br/>" ' In Visual Basic, the DictionaryEntry objects contained in the ' allKeysDictionary object must be copied to an array before ' you can iterate through the items. Dim allKeysArray(allKeysDictionary.Count - 1) As DictionaryEntry allKeysDictionary.CopyTo(allKeysArray, 0) Dim entry As DictionaryEntry For Each entry In allKeysArray MessageLabel.Text &= "Key=" & entry.Key.ToString() & _ ", Value=" & entry.Value.ToString() & "<br/>" Next End Sub </script> <html> <body> <form runat="server"> <h3>DataKey Example</h3> <asp:detailsview id="CustomerDetailsView" datasourceid="DetailsViewSource" autogeneraterows="true" datakeynames="CustomerID, CompanyName, PostalCode" allowpaging="true" runat="server"> </asp:detailsview> <br/> <asp:label id="MessageLabel" forecolor="Red" runat="server"/> <!-- 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="DetailsViewSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>
<%@ Page language="C#" %> <script runat="server"> void CustomerDetailsView_DataBound(Object sender, EventArgs e) { // Retrieve the IOrderedDictionary object that contains the key field values. IOrderedDictionary allKeysDictionary = CustomerDetailsView.DataKey.Values; // Display the the value of the key fields. MessageLabel.Text = "The key field values for the displayed record are: <br/><br/>"; foreach (DictionaryEntry entry in allKeysDictionary) { MessageLabel.Text += "Key=" + entry.Key.ToString() + ", Value=" + entry.Value.ToString() + "<br/>"; } } </script> <html> <body> <form runat="server"> <h3>DataKey Example</h3> <asp:detailsview id="CustomerDetailsView" datasourceid="DetailsViewSource" autogeneraterows="true" datakeynames="CustomerID, CompanyName, PostalCode" allowpaging="true" ondatabound="CustomerDetailsView_DataBound" runat="server"> </asp:detailsview> <br/> <asp:label id="MessageLabel" forecolor="Red" runat="server"/> <!-- 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="DetailsViewSource" 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に収録されているすべての辞書からDataKey.Values プロパティを検索する場合は、下記のリンクをクリックしてください。

- DataKey.Values プロパティのページへのリンク