GridViewDeletedEventArgs 类

定义

RowDeleted 事件提供数据。

C#
public class GridViewDeletedEventArgs : EventArgs
继承
GridViewDeletedEventArgs

示例

下面的示例演示如何使用 GridViewDeletedEventArgs 传递给事件处理方法的 对象来确定 RowDeleted 删除操作期间是否发生了异常。

ASP.NET (C#)

<%@ 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 CustomersGridView_RowDeleted(Object sender, GridViewDeletedEventArgs e)
  {

    // Use the Exception property to determine whether an exception
    // occurred during the delete operation.
    if (e.Exception == null)
    {
      // Use the AffectedRows property to determine whether the
      // record was deleted. Sometimes an error might occur that 
      // does not raise an exception, but prevents the delete
      // operation from completing.
      if (e.AffectedRows == 1)
      {
        Message.Text = "Record deleted successfully.";
      }
      else
      {
        Message.Text = "An error occurred during the delete operation.";
      }
    }
    else
    {
      // Insert the code to handle the exception.
      Message.Text = "An error occurred during the delete operation.";

      // Use the ExceptionHandled property to indicate that the 
      // exception is already handled.
      e.ExceptionHandled = true;
    }
    
  }
    
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>GridViewDeletedEventArgs Example</title>
</head>
<body>
    <form id="form1" runat="server">
        
      <h3>GridViewDeletedEventArgs Example</h3>
            
      <asp:label id="Message"
        forecolor="Red"          
        runat="server"/>
                
      <br/>
            
      <!-- The GridView control automatically sets the columns     -->
      <!-- specified in the datakeynames property as read-only.    -->
      <!-- No input controls are rendered for these columns in     -->
      <!-- edit mode.                                              -->
      <asp:gridview id="CustomersGridView" 
        datasourceid="CustomersSqlDataSource" 
        autogeneratecolumns="true"
        autogeneratedeletebutton="true"
        datakeynames="CustomerID"
        onrowdeleted="CustomersGridView_RowDeleted"  
        runat="server">
      </asp:gridview>
            
      <!-- 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="CustomersSqlDataSource"  
        selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
        deletecommand="Delete from Customers where CustomerID = @CustomerID"
        connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
        runat="server">
      </asp:sqldatasource>
      
    </form>
  </body>
</html>

注解

GridView当“删除”按钮 (控件中的属性设置为“Delete”的按钮CommandName时,控件将引发 RowDeleted 该事件,) 在控件中删除该记录之后GridView单击。 这允许你提供一个事件处理方法,该方法执行自定义例程,例如,每当发生此事件时检查删除操作的结果。

对象 GridViewDeletedEventArgs 传递给事件处理方法,该方法允许你确定受影响的记录数以及可能发生的任何异常。 若要确定受删除操作影响的记录数,请使用 AffectedRows 属性。 Exception使用 属性可确定是否发生任何异常。 还可以通过设置 属性来指示是否在事件处理方法中处理了异常 ExceptionHandled

备注

如果在删除操作期间发生异常,并且 属性 ExceptionHandled 设置为 false,则 GridView 控件将重新引发异常。

如果要访问已删除记录的键字段和非键字段的名称/值对,请分别使用 KeysValues 属性。

有关如何处理事件的详细信息,请参阅 处理和引发事件

构造函数

属性

AffectedRows

获取受删除操作影响的行数。

Exception

获取在删除操作过程中引发的异常(如果引发)。

ExceptionHandled

获取或设置一个值,该值指示是否在事件处理程序中处理了删除操作中引发的异常。

Keys

获取已删除记录的键字段名/值对的排序字典。

Values

获取包含已删除记录所对应的非键字段名称/值对的字典。

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于

产品 版本
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

另请参阅