다음을 통해 공유


DetailsView.AutoGenerateDeleteButton 속성

정의

현재 레코드를 삭제하는 기본 제공 컨트롤이 DetailsView 컨트롤에 표시되는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 virtual property bool AutoGenerateDeleteButton { bool get(); void set(bool value); };
public virtual bool AutoGenerateDeleteButton { get; set; }
member this.AutoGenerateDeleteButton : bool with get, set
Public Overridable Property AutoGenerateDeleteButton As Boolean

속성 값

Boolean

현재 레코드를 삭제하는 기본 제공 컨트롤을 표시하는 경우 true이고, 그렇지 않으면 false입니다. 기본값은 false입니다.

예제

다음 코드 예제에서는 속성을 사용 하 여 AutoGenerateDeleteButton 현재 레코드를 삭제 하는 기본 제공 컨트롤을 표시 하는 방법을 보여 줍니다.


<%@ Page language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>DetailsView AutoGenerateDeleteButton Example</title>
</head>
<body>
    <form id="Form1" runat="server">
        
      <h3>DetailsView AutoGenerateDeleteButton Example</h3>
                
        <asp:detailsview id="CustomersDetailView"
          datasourceid="DetailsViewSource"
          datakeynames="CustomerID"
          autogeneratedeletebutton="true"  
          autogeneraterows="true"
          allowpaging="true"  
          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]">
        </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">
<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>DetailsView AutoGenerateDeleteButton Example</title>
</head>
<body>
    <form id="Form1" runat="server">
        
      <h3>DetailsView AutoGenerateDeleteButton Example</h3>
                
        <asp:detailsview id="CustomersDetailView"
          datasourceid="DetailsViewSource"
          datakeynames="CustomerID"
          autogeneratedeletebutton="true"  
          autogeneraterows="true"
          allowpaging="true"  
          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]">
        </asp:SqlDataSource>
    </form>
  </body>
</html>

설명

DetailsView 컨트롤이 상속 DataSourceView 되는 개체에 바인딩되고 CanDelete 속성이 반환 trueDetailsView 되면 컨트롤은 데이터 소스 컨트롤의 기능을 활용하고 자동 삭제 기능을 제공할 수 있습니다.

참고

개체가 SqlDataSourceView 데이터를 SqlDataSource.DeleteCommand 삭제하려면 기본 SqlDataSource 개체의 속성을 delete 쿼리 문으로 설정해야 합니다.

속성이 AutoGenerateDeleteButton 설정 true되면 삭제 단추가 CommandField 있는 행 필드가 컨트롤에 DetailsView 자동으로 표시됩니다. 삭제 단추를 클릭하면 데이터 원본에서 해당 레코드가 영구적으로 제거됩니다.

참고

자동 삭제 기능이 작동하려면 속성도 설정 DataKeyNames 해야 합니다.

컨트롤은 DetailsView 레코드가 삭제될 때 사용자 지정 작업을 수행하는 데 사용할 수 있는 여러 이벤트를 제공합니다. 다음 표에서는 사용 가능한 이벤트를 나열합니다.

이벤트 설명
ItemDeleted 삭제 단추를 클릭할 때 발생하지만 컨트롤이 DetailsView 데이터 원본에서 레코드를 삭제한 후에 발생합니다. 이 이벤트는 종종 삭제 작업의 결과를 확인하는 데 사용됩니다.
ItemDeleting 삭제 단추를 클릭할 때 컨트롤이 DetailsView 데이터 원본에서 레코드를 삭제하기 전에 발생합니다. 이 이벤트는 종종 삭제 작업을 취소하는 데 사용됩니다.

AutoGenerateDeleteButton 은 뷰 상태에 저장됩니다.

적용 대상

추가 정보