Aracılığıyla paylaş


CommandField.DeleteImageUrl Özellik

Tanım

Bir alandaki Sil düğmesi için görüntülenecek görüntünün URL'sini CommandField alır veya ayarlar.

public:
 virtual property System::String ^ DeleteImageUrl { System::String ^ get(); void set(System::String ^ value); };
public virtual string DeleteImageUrl { get; set; }
member this.DeleteImageUrl : string with get, set
Public Overridable Property DeleteImageUrl As String

Özellik Değeri

bir içindeki Sil düğmesi için görüntülenecek görüntünün URL'si CommandField. Varsayılan, bu özelliğin ayarlanmadığını gösteren boş bir dizedir ("").

Örnekler

Aşağıdaki kod örneği, denetimin DeleteImageUrl bir alanındaki Sil düğmesi CommandField için görüntülenecek özel bir görüntü belirtmek üzere özelliğinin GridView nasıl kullanılacağını gösterir. ButtonType Sil düğmesinin görüntü görüntüleyebilmesi için özelliği olarak ayarlanmalıdırButtonType.Image.


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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>CommandField Example</title>
</head>
<body>
    <form id="form1" runat="server">
      
      <h3>CommandField Example</h3>

      <asp:gridview id="CustomersGridView" 
        datasourceid="CustomersSqlDataSource" 
        autogeneratecolumns="false"
        datakeynames="CustomerID"  
        runat="server">
        
        <columns>
          <asp:commandfield showdeletebutton="true"
            buttontype="Image"
            deleteimageurl="~\Images\DeleteImage.jpg"
            headertext="Edit Controls"/>
          <asp:boundfield datafield="CustomerID"
            headertext="Customer ID" />
          <asp:boundfield datafield="CompanyName"
            headertext="Company Name"/>
          <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"/>
        </columns>
        
      </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 [Customers] Where [CustomerID] = @CustomerID"
        connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
        runat="server">
      </asp:sqldatasource>
            
    </form>
  </body>
</html>

<%@ Page language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>CommandField Example</title>
</head>
<body>
    <form id="form1" runat="server">
      
      <h3>CommandField Example</h3>

      <asp:gridview id="CustomersGridView" 
        datasourceid="CustomersSqlDataSource" 
        autogeneratecolumns="false"
        datakeynames="CustomerID"  
        runat="server">
        
        <columns>
          <asp:commandfield showdeletebutton="true"
            buttontype="Image"
            deleteimageurl="~\Images\DeleteImage.jpg"
            headertext="Edit Controls"/>
          <asp:boundfield datafield="CustomerID"
            headertext="Customer ID" />
          <asp:boundfield datafield="CompanyName"
            headertext="Company Name"/>
          <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"/>
        </columns>
        
      </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 [Customers] Where [CustomerID] = @CustomerID"
        connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
        runat="server">
      </asp:sqldatasource>
            
    </form>
  </body>
</html>

Açıklamalar

ButtonType Bir CommandField alanın özelliği olarak ButtonType.Imageayarlandığında, sil düğmesi için görüntülenecek görüntüyü belirtmek üzere özelliğini kullanınDeleteImageUrl. İstemcinin tarayıcısı bu biçimi desteklediği sürece bu görüntü herhangi bir dosya biçiminde (.jpg, .gif, .bmp vb.) olabilir.

Not

Sil düğmesi için görüntü görüntülemeye alternatif olarak, önce özelliğini veya olarak ayarlayarak ButtonType ve ardından özelliği ButtonType.Button ayarlayarak DeleteText metni görüntüleyebilirsiniz.ButtonType.Link

Şunlara uygulanır

Ayrıca bkz.