CommandField.ShowInsertButton プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > CommandField.ShowInsertButton プロパティの意味・解説 

CommandField.ShowInsertButton プロパティ

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

CommandField フィールドNew ボタン表示されるかどうかを示す値を取得または設定します

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

Public Overridable Property
 ShowInsertButton As Boolean
Dim instance As CommandField
Dim value As Boolean

value = instance.ShowInsertButton

instance.ShowInsertButton = value
public virtual bool ShowInsertButton { get;
 set; }
public:
virtual property bool ShowInsertButton {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_ShowInsertButton ()

/** @property */
public void set_ShowInsertButton (boolean value)
public function get ShowInsertButton
 () : boolean

public function set ShowInsertButton
 (value : boolean)

プロパティ
CommandFieldNew ボタン表示する場合trueそれ以外場合false既定値false です。

解説解説

ShowInsertButton プロパティ使用してCommandField フィールドNew ボタン表示するかどうか指定しますNew ボタンCommandField フィールド1 回だけ表示されユーザーデータ ソース新しレコード追加できます

メモメモ

このプロパティは、DetailsView コントロールなど、挿入操作サポートしたデータ バインド コントロールにのみ適用されます。

ユーザーNew ボタンクリックすると、データ バインド コントロール表示されフィールドごとに入力コントロール表示されユーザー新しレコードの値を入力できますNew ボタンInsert ボタンCancel ボタンに置き換わり、CommandField フィールド内のその他のコマンド ボタンはすべて非表示なりますInsert ボタンクリックするデータ ソースレコード追加されCancel ボタンクリックする操作キャンセルされます。

CommandField フィールドの ButtonType プロパティButtonType.Button または ButtonType.Link設定されている場合は、NewText プロパティ使用してNew ボタン表示するテキスト指定します。または、最初に ButtonType プロパティButtonType.Image設定してから NewImageUrl プロパティ設定することにより、イメージ表示できます

使用例使用例

ShowInsertButton プロパティ使用してDetailsView コントロールNew ボタン表示しユーザーデータ ソース新しレコード追加できるようにする方法次のコード例示します

<%@ Page language="VB" %>

<html>
  <body>
    <form runat="server">
      
      <h3>CommandField Example</h3>

      <asp:detailsview id="CustomersGridView" 
        datasourceid="CustomersSqlDataSource" 
        autogeneraterows="false"
        datakeynames="CustomerID"  
        allowpaging="true" 
        runat="server">
        
        <fields>
          <asp:boundfield datafield="CustomerID"
            headertext="Customer ID" />
          <asp:boundfield datafield="CompanyName"
            headertext="CompanyName"/>
          <asp:boundfield datafield="Address"
            headertext="Address"/>
          <asp:boundfield datafield="City"
            headertext="City"/>
          <asp:boundfield datafield="PostalCode"
            headertext="ZIP Code"/>
          <asp:boundfield datafield="Country"
            headertext="Country"/>
          <asp:commandfield showinsertbutton="true"
            showheader="true"
            headertext="Add Customer"/>
        </fields>
        
      </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="CustomersSqlDataSource"
  
        selectcommand="Select [CustomerID], [CompanyName], [Address],
 [City], [PostalCode], [Country] From [Customers]"
        insertcommand="Insert Into [Customers]([CustomerID], [CompanyName],
 [City], [PostalCode], [Country]) Values (@CustomerID, @CompanyName, @City, @PostalCode,
 @Country)"
        connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
        runat="server">
      </asp:sqldatasource>
            
    </form>
  </body>
</html>

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

<html>
  <body>
    <form runat="server">
      
      <h3>CommandField Example</h3>

      <asp:detailsview id="CustomersGridView" 
        datasourceid="CustomersSqlDataSource" 
        autogeneraterows="false"
        datakeynames="CustomerID"  
        allowpaging="true" 
        runat="server">
        
        <fields>
          <asp:boundfield datafield="CustomerID"
            headertext="Customer ID" />
          <asp:boundfield datafield="CompanyName"
            headertext="CompanyName"/>
          <asp:boundfield datafield="Address"
            headertext="Address"/>
          <asp:boundfield datafield="City"
            headertext="City"/>
          <asp:boundfield datafield="PostalCode"
            headertext="ZIP Code"/>
          <asp:boundfield datafield="Country"
            headertext="Country"/>
          <asp:commandfield showinsertbutton="true"
            showheader="true"
            headertext="Add Customer"/>
        </fields>
        
      </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="CustomersSqlDataSource"  
        selectcommand="Select [CustomerID], [CompanyName], [Address], [City],
 [PostalCode], [Country] From [Customers]"
        insertcommand="Insert Into [Customers]([CustomerID], [CompanyName],
 [City], [PostalCode], [Country]) Values (@CustomerID, @CompanyName, @City, @PostalCode,
 @Country)"
        connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
        runat="server">
      </asp:sqldatasource>
            
    </form>
  </body>
</html>

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CommandField クラス
CommandField メンバ
System.Web.UI.WebControls 名前空間
CommandField.InsertImageUrl プロパティ
CommandField.InsertText プロパティ
CommandField.NewImageUrl プロパティ
CommandField.NewText プロパティ
CommandField.ShowCancelButton プロパティ
CommandField.ShowDeleteButton プロパティ
CommandField.ShowEditButton プロパティ
ShowSelectButton


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

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

辞書ショートカット

すべての辞書の索引

「CommandField.ShowInsertButton プロパティ」の関連用語

CommandField.ShowInsertButton プロパティのお隣キーワード
検索ランキング

   

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



CommandField.ShowInsertButton プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2025 GRAS Group, Inc.RSS