嗨,我想知道如何在asp.net的按钮内添加图像
<asp:Button ID="Login" runat="server" Height="27px" OnClick="Login_Click" Text="Log In " Width="92px" EnableTheming="True" />
为什么不只使用asp:ImageButton
控件喜欢
<asp:ImageButton ID="ImageButton1" ImageUrl="~/Images/bullet.png" AlternateText="No Image available" OnClick="mymethod" runat="server" />
代替使用常规按钮,您可以使用asp.net ImageButton并设置所需的图像URL。
您必须知道Asp.net中的按钮类型为[[3