DetailsView.DataKey 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
표시된 레코드의 기본 키를 나타내는 DataKey 개체를 가져옵니다.
public:
virtual property System::Web::UI::WebControls::DataKey ^ DataKey { System::Web::UI::WebControls::DataKey ^ get(); };
[System.ComponentModel.Browsable(false)]
public virtual System.Web.UI.WebControls.DataKey DataKey { get; }
[<System.ComponentModel.Browsable(false)>]
member this.DataKey : System.Web.UI.WebControls.DataKey
Public Overridable ReadOnly Property DataKey As DataKey
속성 값
표시된 레코드의 기본 키를 나타내는 DataKey입니다.
- 특성
예제
다음 코드 예제에서는 현재 레코드에 DataKey 대 한 키 필드 및 해당 값을 확인 하려면 속성을 사용 하는 방법을 보여 줍니다.
<%@ Page language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void CustomerDetailView_ItemUpdated(Object sender,
DetailsViewUpdatedEventArgs e)
{
// Create a dictionary that contains the key fields and values using
// the AllValues method of the DataKey object contained in the DataKey
// property.
IOrderedDictionary keyList = CustomerDetailView.DataKey.Values;
// Get the ArrayList objects that represent the key fields and values.
ArrayList keys = (ArrayList)keyList.Keys;
ArrayList values = (ArrayList)keyList.Values;
// Get the key field and value for the current record.
String keyField = keys[0].ToString();
String keyValue = values[0].ToString();
// Log the update operation using the key field and value.
LogUpdate(keyField, keyValue);
}
void LogUpdate(String keyField, String keyValue)
{
// Insert code to log the update operation.
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>DetailsView DataKey Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>DetailsView DataKey Example</h3>
<asp:detailsview id="CustomerDetailView"
datasourceid="DetailsViewSource"
datakeynames="CustomerID"
autogeneraterows="true"
autogenerateeditbutton="true"
allowpaging="true"
onitemupdated="CustomerDetailView_ItemUpdated"
runat="server">
<headerstyle backcolor="Navy"
forecolor="White"/>
</asp:detailsview>
<!-- 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" runat="server"
ConnectionString=
"<%$ ConnectionStrings:NorthWindConnectionString%>"
InsertCommand="INSERT INTO [Customers]([CustomerID],
[CompanyName], [Address], [City], [PostalCode], [Country])
VALUES (@CustomerID, @CompanyName, @Address, @City,
@PostalCode, @Country)"
SelectCommand="Select [CustomerID], [CompanyName],
[Address], [City], [PostalCode], [Country] From [Customers]"
UpdateCommand="UPDATE [Customers] SET
[CompanyName] = @CompanyName,
[Address] = @Address, [City] = @City,
[PostalCode] = @PostalCode, [Country] = @Country
WHERE [CustomerID] = @CustomerID">
</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">
<script runat="server">
Sub CustomerDetailView_ItemUpdated(ByVal sender As Object, _
ByVal e As DetailsViewUpdatedEventArgs)
' Create a dictionary that contains the key fields and values
' using the AllValues method of the DataKey object contained
' in the DataKey property.
Dim keyList As IOrderedDictionary = _
CustomerDetailsView.DataKey.Values
' Get the ArrayList objects that represent the key fields
' and values.
Dim keys As ArrayList = CType(keyList.Keys, ArrayList)
Dim values As ArrayList = CType(keyList.Values, ArrayList)
' Get the key field and value for the current record.
Dim keyField As String = keys(0).ToString()
Dim keyValue As String = values(0).ToString()
' Log the update operation using the key field and value.
LogUpdate(keyField, keyValue)
End Sub
Sub LogUpdate(ByVal keyField As String, ByVal keyValue As String)
' Insert code to log the update operation.
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>
DetailsView DataKey Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>
DetailsView DataKey Example</h3>
<asp:DetailsView ID="CustomerDetailsView"
DataSourceID="DetailsViewSource"
DataKeyNames="CustomerID"
AutoGenerateRows="true"
AutoGenerateEditButton="true"
AllowPaging="true"
OnItemUpdated="CustomerDetailView_ItemUpdated"
runat="server">
<HeaderStyle BackColor="Navy" ForeColor="White" />
</asp:DetailsView>
<!-- 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" runat="server"
ConnectionString=
"<%$ ConnectionStrings:NorthWindConnectionString%>"
InsertCommand="INSERT INTO [Customers]([CustomerID],
[CompanyName], [Address], [City], [PostalCode], [Country])
VALUES (@CustomerID, @CompanyName, @Address, @City,
@PostalCode, @Country)"
SelectCommand="Select [CustomerID], [CompanyName],
[Address], [City], [PostalCode], [Country]
From [Customers]"
UpdateCommand="UPDATE [Customers] SET [CompanyName] = @CompanyName,
[Address] = @Address, [City] = @City,
[PostalCode] = @PostalCode, [Country] = @Country
WHERE [CustomerID] = @CustomerID"></asp:SqlDataSource>
</form>
</body>
</html>
설명
속성이 DataKeyNames 설정되면 컨트롤은 DetailsView 현재 레코드의 키 필드 또는 필드를 나타내는 개체를 자동으로 만듭니다 DataKey . DataKey 속성을 사용하여 이 DataKey 개체를 가져옵니다. 이 속성은 일반적으로 속성에 지정된 DataKeyNames 필드에 대한 키와 해당 값을 가져오는 데 사용됩니다.
참고
바로 가기로 속성을 사용하여 속성에 SelectedValue 나열된 DataKeyNames 첫 번째 키 필드의 값을 확인할 수도 있습니다.