c#asp.net 3.5中的图像文本上的文本

前端之家收集整理的这篇文章主要介绍了c#asp.net 3.5中的图像文本上的文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个图像按钮.我想在其上添加一个文本“搜索”.我无法添加它,因为VS 2008中的“imagebutton”属性没有文本控件.任何人都可以告诉我如何添加文本到图像按钮?
<asp:ImageButton ID="Searchbutton" runat="server" AlternateText="Search" 
        CssClass="bluebutton"
        ImageUrl="../Graphics/bluebutton.gif" Width="110px" 
        onclick="Searchbutton_Click"/>

解决方法

<button runat="server" 
  style="background-image:url('/Content/Img/stackoverflow-logo-250.png')" >
  your text here<br/>and some more<br/><br/> and some more ....
  </button>
原文链接:https://www.f2er.com/c/111890.html

猜你在找的C&C++相关文章