i have this
<asp:CommandField ButtonType="Button" CancelImageUrl="~/img/annulla_grigio.png" EditImageUrl="~/img/modifica_grigio.png"
ShowEditButton="True" UpdateText="" UpdateImageUrl="~/img/salva_grigio.png" ItemStyle-HorizontalAlign="center"
ItemStyle-CssClass="tabella_p_modifica" ControlStyle-CssClass="modifica_hover" EditText=""/>
And it works when i hover on it change with other image, for example change gray pencil into red pencil. But when i click on Edit button it's show two buttons as Update and Cancel. But with same image of edit.
The first thing to try is to switch
ButtonType="Button"
toButtonType="Image"
. The reason is that yourImageUrl
properties won't appear unless you set that to ImageI suspect you are setting the pencil image inside of your CSS class
modifica_hover
. This class will apply to both the Edit and Cancel buttons. That's probably why you see the pencil for both of them.An alternative that you may want to try is to create this field as a
TemplateField
which gives you more control. Just make sure to pass the correctCommandName
for the event to trigger theGridView
event.