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

DetailsViewInsertedEventArgs クラス

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

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

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

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

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

DetailsViewInsertedEventArgs オブジェクトイベント ハンドラ渡され、これにより影響受けたレコード数および発生した例外確認できます挿入操作影響受けたレコード数を確認するには、AffectedRows プロパティ使用します例外発生しているかどうか確認するには、Exception プロパティ使用します。ExceptionHandled プロパティ設定することにより、イベント ハンドラで既に例外処理されたかどうかを示すこともできます挿入されレコードの値にアクセスする必要がある場合は、Values プロパティ使用します

既定では、DetailsView コントロールは、挿入操作の後、DefaultMode プロパティ指定されているモード戻りますDetailsView コントロール挿入モードのまま維持するには、KeepInInsertMode プロパティtrue設定します

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

DetailsViewDeletedEventArgs クラスインスタンス初期プロパティ値の一覧については、DetailsViewDeletedEventArgs コンストラクタトピック参照してください

使用例使用例

ItemInserted イベントイベント ハンドラ渡されDetailsViewInsertedEventArgs オブジェクト使用して挿入操作中に例外発生したかどうか確認する方法コード例次に示します

<%@ Page language="VB" autoeventwireup="false"
 %>

<script runat="server">

  Sub CustomerDetailsView_ItemInserted(ByVal
 sender As Object, _
    ByVal e As DetailsViewInsertedEventArgs)
 _
    Handles CustomerDetailsView.ItemInserted

    ' Use the Exception property to determine whether an exception
    ' occurred during the insert operation.
    If e.Exception Is Nothing
 And e.AffectedRows = 1 Then
    
      ' Use the Values property to get the value entered by 
      ' the user for the CompanyName field.
      Dim name As String
 = e.Values("CompanyName").ToString()

      ' Display a confirmation message.
      MessageLabel.Text = name & " added successfully. "
    
    Else
    
      ' Insert the code to handle the exception.
      MessageLabel.Text = e.Exception.Message
      
      ' Use the ExceptionHandled property to indicate that the 
      ' exception is already handled.
      e.ExceptionHandled = True
      
      ' When an exception occurs, keep the DetailsView
      ' control in insert mode.
      e.KeepInInsertMode = True
    
    End If
        
  End Sub

</script>

<html>
  <body>
    <form runat="server">
        
      <h3>DetailsViewInsertedEventArgs Example</h3>
                
        <asp:detailsview id="CustomerDetailsView"
          datasourceid="DetailsViewSource"
          datakeynames="CustomerID"
          autogenerateinsertbutton="true"  
          autogeneraterows="true"
          allowpaging="true"
          runat="server">
               
          <fieldheaderstyle backcolor="Navy"
            forecolor="White"/>
                    
        </asp:detailsview>
        
        <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="DetailsViewSource"
          selectcommand="Select [CustomerID], [CompanyName], [Address], 
            [City], [PostalCode], [Country] From [Customers]"
          insertcommand="INSERT INTO [Customers]([CustomerID], [CompanyName],
 
            [Address], [City], [PostalCode], [Country]) 
            VALUES (@CustomerID, @CompanyName, @Address, @City, 
            @PostalCode, @Country)"
          connectionstring=
            "<%$ ConnectionStrings:NorthWindConnectionString%>"
 
          runat="server"/>
            
      </form>
  </body>
</html>

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

<script runat="server">

  void CustomerDetailsView_ItemInserted(Object sender, 
    DetailsViewInsertedEventArgs e)
  {
    // Use the Exception property to determine whether an exception
    // occurred during the insert operation.
    if (e.Exception == null && e.AffectedRows
 == 1)
    {
      // Use the Values property to get the value entered by 
      // the user for the CompanyName field.
      String name = e.Values["CompanyName"].ToString();

      // Display a confirmation message.
      MessageLabel.Text = name + " added successfully. ";

    }
    else
    {
      // Insert the code to handle the exception.
      MessageLabel.Text = e.Exception.Message;
      
      // Use the ExceptionHandled property to indicate that the 
      // exception is already handled.
      e.ExceptionHandled = true;
      
      // When an exception occurs, keep the DetailsView
      // control in insert mode.
      e.KeepInInsertMode = true;
    }
  }

</script>

<html>
  <body>
    <form runat="server">
        
      <h3>DetailsViewInsertedEventArgs Example</h3>
                
        <asp:detailsview id="CustomerDetailsView"
          datasourceid="DetailsViewSource"
          datakeynames="CustomerID"
          autogenerateinsertbutton="true"  
          autogeneraterows="true"
          allowpaging="true"
          oniteminserted="CustomerDetailsView_ItemInserted" 
          runat="server">
               
          <fieldheaderstyle backcolor="Navy"
            forecolor="White"/>
                    
        </asp:detailsview>
        
        <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="DetailsViewSource"
          selectcommand="Select [CustomerID], [CompanyName], [Address], 
            [City], [PostalCode], [Country] From [Customers]"
          insertcommand="INSERT INTO [Customers]([CustomerID], 
            [CompanyName], [Address], [City], [PostalCode], 
            [Country]) VALUES (@CustomerID, @CompanyName, @Address, 
            @City, @PostalCode, @Country)"
          connectionstring=
            "<%$ ConnectionStrings:NorthWindConnectionString%>" 
          runat="server"/>
            
      </form>
  </body>
</html>

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

DetailsViewInsertedEventArgs コンストラクタ

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

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

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

パラメータ

affectedRows

挿入操作影響受けた行の数。

e

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

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DetailsViewInsertedEventArgs クラス
DetailsViewInsertedEventArgs メンバ
System.Web.UI.WebControls 名前空間
DetailsView クラス
DetailsViewInsertedEventHandler
DetailsView.ItemInserted イベント
AffectedRows
Exception
ExceptionHandled
KeepInInsertMode

DetailsViewInsertedEventArgs プロパティ


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

参照参照

関連項目

DetailsViewInsertedEventArgs クラス
System.Web.UI.WebControls 名前空間
DetailsView クラス
DetailsViewInsertedEventHandler
DetailsView.ItemInserted イベント
AffectedRows
Exception
ExceptionHandled
KeepInInsertMode
Values

その他の技術情報

イベント利用

DetailsViewInsertedEventArgs メソッド


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

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

関連項目

DetailsViewInsertedEventArgs クラス
System.Web.UI.WebControls 名前空間
DetailsView クラス
DetailsViewInsertedEventHandler
DetailsView.ItemInserted イベント
AffectedRows
Exception
ExceptionHandled
KeepInInsertMode
Values

その他の技術情報

イベント利用

DetailsViewInsertedEventArgs メンバ

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

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


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

関連項目

DetailsViewInsertedEventArgs クラス
System.Web.UI.WebControls 名前空間
DetailsView クラス
DetailsViewInsertedEventHandler
DetailsView.ItemInserted イベント
AffectedRows
Exception
ExceptionHandled
KeepInInsertMode
Values

その他の技術情報

イベント利用



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

辞書ショートカット

すべての辞書の索引

「DetailsViewInsertedEventArgs」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS