没有为面板显示的背景图像

时间:2013-09-21 10:03:50

标签: asp.net panel

我在asp.net网站上有一个小组

我正试图在运行时添加图像

ASPX

<asp:Panel ID="pnl001" runat="server" Height="300px" Width="1174px"  >
</asp:Panel>

背后的代码

pnl001.BackImageUrl = "D:/mayur.jpeg"

请帮忙。谢谢!

1 个答案:

答案 0 :(得分:0)

如果要从代码隐藏

设置面板的背景图像,可以尝试此操作
pnl001.BackImageUrl = @"D:/mayur.jpeg";