GridViewDeletedEventArgsとは? わかりやすく解説

GridViewDeletedEventArgs クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

RowDeleted イベントデータ提供します

名前空間: System.Web.UI.WebControls
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public Class GridViewDeletedEventArgs
    Inherits EventArgs
Dim instance As GridViewDeletedEventArgs
public class GridViewDeletedEventArgs : EventArgs
public ref class GridViewDeletedEventArgs :
 public EventArgs
public class GridViewDeletedEventArgs extends
 EventArgs
public class GridViewDeletedEventArgs extends
 EventArgs
解説解説

GridView コントロールは、コントロール内の Delete ボタン (CommandName プロパティが "Delete" に設定されボタン) がクリックされた場合に、GridView コントロール実際にレコード削除した後に RowDeleted イベント発生させます。これにより、このイベント発生するたびにカスタム ルーチン (削除操作結果確認するなど) を実行するイベント処理メソッドを提供できます

GridViewDeletedEventArgs オブジェクトイベント処理メソッド渡されることにより、影響受けたレコード数および発生した例外確認できます削除操作影響受けたレコード数を確認するには、AffectedRows プロパティ使用します例外発生しているかどうか確認するには、Exception プロパティ使用します。ExceptionHandled プロパティ設定することにより、イベント処理メソッドで既に例外処理されたかどうかを示すこともできます

メモメモ

削除操作中に例外発生しExceptionHandled プロパティfalse設定されている場合は、GridView コントロールによって例外再度スローさます。

削除されレコードキー フィールドおよびキー以外のフィールドの名前と値のペアアクセスする場合は、Keys プロパティ (名前の場合) と Values プロパティ (値の場合) を使用します

イベント処理詳細については、「イベント利用」を参照してください

使用例使用例

RowDeleted イベントイベント処理メソッド渡されGridViewDeletedEventArgs オブジェクト使用して削除操作中に例外発生したかどうか確認する方法次の例に示します

<%@ Page language="VB" %>

<script runat="server">

  Sub CustomersGridView_RowDeleted(ByVal sender
 As Object, ByVal e As
 GridViewDeletedEventArgs)

    ' Use the Exception property to determine whether an exception
    ' occurred during the delete operation.
    If e.Exception Is Nothing
 Then

      ' 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 Then
      
        Message.Text = "Record deleted successfully."
      
      Else
      
        Message.Text = "An error occurred during the delete operation."
      
      End If
    
    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
    
    End If
    
  End Sub
    
</script>

<html>
  <body>
    <form 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>

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

<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>
  <body>
    <form 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>

.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
   System.EventArgs
    System.Web.UI.WebControls.GridViewDeletedEventArgs
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
GridViewDeletedEventArgs メンバ
System.Web.UI.WebControls 名前空間
GridView クラス
GridViewDeletedEventHandler
GridView.RowDeleted イベント
AffectedRows
Exception
ExceptionHandled
Keys
Values
OnRowDeleted

GridViewDeletedEventArgs コンストラクタ

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

GridViewDeletedEventArgs クラス新しインスタンス初期化します。

名前空間: System.Web.UI.WebControls
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public Sub New ( _
    affectedRows As Integer, _
    e As Exception _
)
Dim affectedRows As Integer
Dim e As Exception

Dim instance As New GridViewDeletedEventArgs(affectedRows,
 e)
public GridViewDeletedEventArgs (
    int affectedRows,
    Exception e
)
public:
GridViewDeletedEventArgs (
    int affectedRows, 
    Exception^ e
)
public GridViewDeletedEventArgs (
    int affectedRows, 
    Exception e
)
public function GridViewDeletedEventArgs (
    affectedRows : int, 
    e : Exception
)

パラメータ

affectedRows

削除操作影響受けた行の数。

e

削除操作実行時発生した例外を表す Exception例外発生しない場合は、このパラメータnull 参照 (Visual Basic では Nothing) を使用します

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
GridViewDeletedEventArgs クラス
GridViewDeletedEventArgs メンバ
System.Web.UI.WebControls 名前空間
GridView クラス
GridViewDeletedEventHandler
Exception
GridView.RowDeleted イベント
AffectedRows
Exception
ExceptionHandled
OnRowDeleted

GridViewDeletedEventArgs プロパティ


パブリック プロパティパブリック プロパティ

参照参照

関連項目

GridViewDeletedEventArgs クラス
System.Web.UI.WebControls 名前空間
GridView クラス
GridViewDeletedEventHandler
GridView.RowDeleted イベント
AffectedRows
Exception
ExceptionHandled
Keys
Values
OnRowDeleted

GridViewDeletedEventArgs メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

GridViewDeletedEventArgs クラス
System.Web.UI.WebControls 名前空間
GridView クラス
GridViewDeletedEventHandler
GridView.RowDeleted イベント
AffectedRows
Exception
ExceptionHandled
Keys
Values
OnRowDeleted

GridViewDeletedEventArgs メンバ

RowDeleted イベントデータ提供します

GridViewDeletedEventArgs データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド GridViewDeletedEventArgs GridViewDeletedEventArgs クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

GridViewDeletedEventArgs クラス
System.Web.UI.WebControls 名前空間
GridView クラス
GridViewDeletedEventHandler
GridView.RowDeleted イベント
AffectedRows
Exception
ExceptionHandled
Keys
Values
OnRowDeleted



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「GridViewDeletedEventArgs」の関連用語

GridViewDeletedEventArgsのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



GridViewDeletedEventArgsのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS