下面我在localhost库中使用Datalist调用我的画廊显示并且现场网站没有显示。
<asp:DataList ID="dlImages" runat="server">
<ItemTemplate>
<ul>
<li><a href="#cube">
<asp:Image ID="Image2" runat="server" class="cubeHide" ImageUrl='<%# Bind("ImageName", "/GalleryImages/{0}") %>' />
</a>
<div class="label_text">
</div>
</li>
</ul>
</ItemTemplate>
</asp:DataList>
答案 0 :(得分:0)
我添加了〜,然后解决了我的问题:
ImageUrl='<%# Bind("ImageName", "~/GalleryImages/{0}") %>'
答案 1 :(得分:0)
1.改变ImageUrl
:
ImageUrl='<%# Bind("ImageName", "/GalleryImages/{0}") %>'
对此:
ImageUrl='<%# Bind("ImageName", "~/GalleryImages/{0}") %>'
2.确保您网站的根目录中有一个名为GalleryImages的文件夹,其中包含相关的图像文件。