ASP.net gridview 图像按钮替代文本
图像按钮中有一个 AlternateText
属性,以便将鼠标悬停在图像按钮上时,替代文本可以阐明按钮的功能。 我想使用 ASP.net 标准 gridview 来执行此操作,并在鼠标停在我添加到 gridview 的按钮字段按钮上时显示文本。但这样的属性并不存在,我使用智能感知的搜索毫无结果。
There is a AlternateText
property in image-buttons so that while hovering mouse on image buttons, alternate text could clarify the functionality of the button.
I want to do so with ASP.net standard gridview and show a text while mouse being stopped on buttonfield button that I've added to my gridview. But such a property does not exist and my searches using Intellisense reached nowhere.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在 ButtonType 为 Image 的 ButtonField 的 ButtonField 上指定 Text 属性,则文本将用作图像的替代文本。
If you specify the Text property on the ButtonField of a ButtonField that has a ButtonType of Image the text will be used as the Alternate Text for the image.
使用 TemplateField 而不是 ButtonField,如下所示:
Use TemplateField instead of ButtonField like below: