如何在asp按钮内添加图像

问题描述 投票:2回答:4

嗨,我想知道如何在asp.net的按钮内添加图像

   <asp:Button ID="Login" runat="server" Height="27px" OnClick="Login_Click"  Text="Log In " Width="92px" EnableTheming="True" /> 
c# asp.net css styles
4个回答
4
投票

为什么不只使用asp:ImageButton控件喜欢

<asp:ImageButton ID="ImageButton1" ImageUrl="~/Images/bullet.png"  AlternateText="No Image available" OnClick="mymethod" runat="server" /> 

1
投票

代替使用常规按钮,您可以使用asp.net ImageButton并设置所需的图像URL。


1
投票

您必须知道Asp.net中的按钮类型为[[3


0
投票
这是我最后要做的,只用一个按钮即可获取图像和文本
© www.soinside.com 2019 - 2024. All rights reserved.