如何在ImageButton上显示文字
如何在 ImageButton 上显示文本。或如何在图像上有一个链接按钮
我已经尝试过:
<asp:LinkButton ID="lbYear" runat="server" CausesValidation="false" Text="HOME">
<asp:Image ID="Image1" runat="server" ImageUrl="~/images/menu.png" Width="90px" Height="39px" />
</asp:LinkButton>
但它显示图像上方的文本..
how to display the text on ImageButton. or how to have a linkbutton on Image
I have tried this:
<asp:LinkButton ID="lbYear" runat="server" CausesValidation="false" Text="HOME">
<asp:Image ID="Image1" runat="server" ImageUrl="~/images/menu.png" Width="90px" Height="39px" />
</asp:LinkButton>
but it is showing the text above the Image..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您实际上需要
,它基本上是一个 Image 和 LinkButton 控件包装成一个:http ://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.imagebutton.aspx
理查德。
It seems like you're actually in need of
<asp:ImageButton />
, which is basically an Image and LinkButton control wrapped into one:http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.imagebutton.aspx
Richard.