在下面的代码中,我想从C盘访问图像并将其放在面板中,但我尝试过我无法将图像放在面板中。还有其他方法可以从c访问图像驱动.pls帮助我做到这一点。
Response.ContentType = "image/jpeg";
docimg.ImageUrl = @"C:\Search\Seardoc\Documents\Desert.jpeg";
imgPnl.BackImageUrl = docimg.ImageUrl;
Response.WriteFile(file);
<asp:Panel ID="imgPnl" runat="server">
<asp:Image ID="docimg" runat="server" Width="100px" Height="100px" /></asp:Panel>