我有像这样的asp.net HyperLink
<asp:HyperLink ID="hlBannerImage" runat="server"></asp:HyperLink>
我正试图在c#代码中动态设置urlimage hlBannerImage.ImageUrl = @“d:\ aa.png”; 但它不起作用。当我尝试链接到同一个asp.net项目中的图像时,它可以正常工作,但它在链接到本地驱动器上的图像时遇到问题,例如C:或D:
请帮忙 感谢
答案 0 :(得分:1)
尝试使用此: hlBannerImage.ImageUrl = @“d:/aa.png”; 代替 hlBannerImage.ImageUrl = @“d:\ aa.png”;
如果你需要为你正在寻找的图像找到这条路径,尝试打开图像,使用任何浏览器,如mozilla或chrome ....你会在那里找到路径。复制该路径并将其发布到您的代码中。我相信这会奏效。