嗨我的表单中有一个按钮,可以触发日期字段的弹出日历。我正在尝试使用我打开图像的日历更改按钮的背景图像,但无法使其工作
这是代码
<asp:Button ID="btn_date" runat="server" Height="32px" Width="32px"
CssClass="style60" Text="C" />
这是css
.style60
{
background-image:url ("Pics/calendar.png");
background-position: top;
}
图像尺寸也是32x32像素。
答案 0 :(得分:1)
尝试按照以下示例使用ImageButton控制器:
<asp:ImageButton id="btn_date" runat="server"
AlternateText="ImageButton 1"
ImageAlign="left"
ImageUrl="Pics/calendar.png"
OnClick="ImageButton_Click"/>
答案 1 :(得分:0)
尝试修改图像的路径,如下所示:
.style60
{
background-image:url ("./Pics/calendar.png");
background-position: top;
}
答案 2 :(得分:0)
尝试使用ImageButton
代替Button
。
<强>代码强>
<asp:ImageButton ID="btn_date" runat="server" Height="32px" Width="32px"
ImageUrl="~/Pics/calendar.png" />