CommandField.InsertImageUrl プロパティ
アセンブリ: System.Web (system.web.dll 内)

Dim instance As CommandField Dim value As String value = instance.InsertImageUrl instance.InsertImageUrl = value
/** @property */ public String get_InsertImageUrl () /** @property */ public void set_InsertImageUrl (String value)
CommandField の Insert ボタンに表示するイメージの URL。既定値は空の文字列 ("") です。このプロパティが設定されていないことを示します。

CommandField フィールドの ButtonType プロパティが ButtonType.Image に設定されている場合は、InsertImageUrl プロパティを使用して、Insert ボタンに表示するイメージを指定します。クライアントのブラウザでサポートされてさえいれば、このイメージにはどのようなファイル形式 (.jpg、.gif、.bmp など) でも使用できます。
![]() |
---|
Insert ボタンにイメージを表示する代わりに、ButtonType プロパティを ButtonType.Button または ButtonType.Link に設定し、次に InsertText プロパティを設定して、テキストを表示することもできます。 |

InsertImageUrl プロパティを使用して、DetailsView コントロールの CommandField フィールドの Insert ボタンに表示するカスタム イメージを指定する方法を次のコード例に示します。Insert ボタンにイメージを表示するには、ButtonType プロパティを ButtonType.Image に設定する必要があります。
<%@ 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" buttontype="Image" insertimageurl="~\Images\InsertButton.jpg" newimageurl="~\Images\AddButton.jpg" cancelimageurl="~\Images\CancelButton.jpg" showheader="true" headertext="Add Store"/> </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" buttontype="Image" insertimageurl="~\Images\InsertButton.jpg" newimageurl="~\Images\AddButton.jpg" cancelimageurl="~\Images\CancelButton.jpg" showheader="true" headertext="Add Store"/> </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>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


CommandField クラス
CommandField メンバ
System.Web.UI.WebControls 名前空間
ButtonFieldBase.ButtonType プロパティ
CommandField.CancelImageUrl プロパティ
CommandField.CancelText プロパティ
CommandField.DeleteImageUrl プロパティ
CommandField.DeleteText プロパティ
CommandField.EditImageUrl プロパティ
CommandField.EditText プロパティ
InsertText
NewImageUrl
NewText
SelectImageUrl
SelectText
ShowCancelButton
ShowInsertButton
UpdateImageUrl
UpdateText
- CommandField.InsertImageUrl プロパティのページへのリンク