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

FormViewDeletedEventArgs クラス

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

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

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

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

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

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

メモメモ

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

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

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

使用例使用例

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

<%@ Page language="VB" %>

<script runat="server">

  Sub EmployeeFormView_ItemDeleted(ByVal sender
 As Object, ByVal e As
 FormViewDeletedEventArgs) Handles EmployeeFormView.ItemDeleted
  
    ' 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
      
        MessageLabel.Text = "Record deleted successfully."
      
      Else
              
        MessageLabel.Text = "An error occurred during the delete
 operation."
      
      End If
    
    Else
    
      ' Insert the code to handle the exception.
      MessageLabel.Text = e.Exception.Message
      
      ' Use the ExceptionHandled property to indicate that the 
      ' exception has already been handled.
      e.ExceptionHandled = True
      
    End If
    
  End Sub

</script>

<html>
  <body>
    <form runat="server">
        
      <h3>FormViewDeletedEventArgs Example</h3>
                       
      <asp:formview id="EmployeeFormView"
        datasourceid="EmployeeSource"
        allowpaging="true"
        datakeynames="EmployeeID"
        runat="server">
        
        <itemtemplate>
        
          <table>
            <tr>
              <td>
                <asp:image id="EmployeeImage"
                  imageurl='<%# Eval("PhotoPath") %>'
                  alternatetext='<%# Eval("LastName") %>'
 
                  runat="server"/>
              </td>
              <td>
                <h3><%# Eval("FirstName")
 %>&nbsp;<%# Eval("LastName") %></h3>
      
                <%# Eval("Title") %>       
 
              </td>
            </tr>
            <tr>
              <td colspan="2">
                <asp:button id="DeleteButton"
                  text="Delete Record"
                  commandname="Delete"
                  runat="server" />
              </td>
            </tr>
          </table>
        
        </itemtemplate>         
                  
      </asp:formview>
      
      <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="EmployeeSource"
        selectcommand="Select [EmployeeID], [LastName], [FirstName],
 [Title], [PhotoPath] From [Employees]"
        deletecommand="Delete [Employees] Where [EmployeeID]=@EmployeeID"
        connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
 
        runat="server"/>
            
    </form>
  </body>
</html>

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

<script runat="server">

  void EmployeeFormView_ItemDeleted(Object sender, FormViewDeletedEventArgs
 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)
      {
        MessageLabel.Text = "Record deleted successfully.";
      }
      else
      {
        MessageLabel.Text = "An error occurred during the delete operation.";
      }
    }
    else
    {
      // Insert the code to handle the exception.
      MessageLabel.Text = e.Exception.Message;
      
      // Use the ExceptionHandled property to indicate that the 
      // exception has already been handled.
      e.ExceptionHandled = true;
    }
  }

</script>

<html>
  <body>
    <form runat="server">
        
      <h3>FormViewDeletedEventArgs Example</h3>
                       
      <asp:formview id="EmployeeFormView"
        datasourceid="EmployeeSource"
        allowpaging="true"
        datakeynames="EmployeeID"
        onitemdeleted="EmployeeFormView_ItemDeleted"  
        runat="server">
        
        <itemtemplate>
        
          <table>
            <tr>
              <td>
                <asp:image id="EmployeeImage"
                  imageurl='<%# Eval("PhotoPath") %>'
                  alternatetext='<%# Eval("LastName") %>' 
                  runat="server"/>
              </td>
              <td>
                <h3><%# Eval("FirstName") %>&nbsp;<%#
 Eval("LastName") %></h3>      
                <%# Eval("Title") %>        
              </td>
            </tr>
            <tr>
              <td colspan="2">
                <asp:button id="DeleteButton"
                  text="Delete Record"
                  commandname="Delete"
                  runat="server" />
              </td>
            </tr>
          </table>
        
        </itemtemplate>         
                  
      </asp:formview>
      
      <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="EmployeeSource"
        selectcommand="Select [EmployeeID], [LastName], [FirstName], [Title],
 [PhotoPath] From [Employees]"
        deletecommand="Delete [Employees] Where [EmployeeID]=@EmployeeID"
        connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
 
        runat="server"/>
            
    </form>
  </body>
</html>

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

FormViewDeletedEventArgs コンストラクタ

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

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

名前空間: 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 FormViewDeletedEventArgs(affectedRows,
 e)
public FormViewDeletedEventArgs (
    int affectedRows,
    Exception e
)
public:
FormViewDeletedEventArgs (
    int affectedRows, 
    Exception^ e
)
public FormViewDeletedEventArgs (
    int affectedRows, 
    Exception e
)
public function FormViewDeletedEventArgs (
    affectedRows : int, 
    e : Exception
)

パラメータ

affectedRows

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

e

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

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
FormViewDeletedEventArgs クラス
FormViewDeletedEventArgs メンバ
System.Web.UI.WebControls 名前空間
FormView クラス
FormViewDeletedEventHandler
Exception
FormView.ItemDeleted イベント
AffectedRows
Exception
ExceptionHandled
OnItemDeleted

FormViewDeletedEventArgs プロパティ


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

参照参照

関連項目

FormViewDeletedEventArgs クラス
System.Web.UI.WebControls 名前空間
FormView クラス
FormViewDeletedEventHandler
FormView.ItemDeleted イベント
AffectedRows
Exception
ExceptionHandled
Keys
Values
OnItemDeleted

FormViewDeletedEventArgs メソッド


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

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

関連項目

FormViewDeletedEventArgs クラス
System.Web.UI.WebControls 名前空間
FormView クラス
FormViewDeletedEventHandler
FormView.ItemDeleted イベント
AffectedRows
Exception
ExceptionHandled
Keys
Values
OnItemDeleted

FormViewDeletedEventArgs メンバ

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

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


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

関連項目

FormViewDeletedEventArgs クラス
System.Web.UI.WebControls 名前空間
FormView クラス
FormViewDeletedEventHandler
FormView.ItemDeleted イベント
AffectedRows
Exception
ExceptionHandled
Keys
Values
OnItemDeleted


このページでは「.NET Framework クラス ライブラリ リファレンス」からFormViewDeletedEventArgsを検索した結果を表示しています。
Weblioに収録されているすべての辞書からFormViewDeletedEventArgsを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からFormViewDeletedEventArgs を検索

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

辞書ショートカット

すべての辞書の索引

「FormViewDeletedEventArgs」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS