命令字段将title属性放在图像按钮上

可以在命令字段的图像按钮上设置标题属性吗?
 <asp:CommandField ShowDeleteButton="True" ButtonType="Image"  ShowEditButton="True" 
                                DeleteImageUrl="images/BPAnn.gif" EditImageUrl="images/edit.gif" DeleteText="Elimina" EditText="Modifica"
                                UpdateImageUrl="images/apply.gif" CancelImageUrl="images/undo.gif" />
    
已邀请:
当你说Title你的意思是HeaderText ???
<asp:CommandField ShowEditButton="True" HeaderText="Testing" />
    
如果你想要Tooltip我的建议是将CommandField转换为TemplateField。 在“模板”字段中,您有更多可用选项。     

要回复问题请先登录注册