-2

我已经在包含名为 photogallery 的文件夹的 ftp 上托管了我的网站,现在我需要做的是,当我的页面被请求时,ftp 文件夹 photogallery 中的所有图像都应该按顺序显示。提前致谢。

string[] filesindirectory = Directory.GetFiles(Server.MapPath("~/Photogallery"));
List<String> images = new List<string>(filesindirectory.Count());
foreach (string item in filesindirectory)
{
images.Add(String.Format("~/Photogallery/{0}", System.IO.Path.GetFileName(item)));
}
RepeaterImages.DataSource = images;
RepeaterImages.DataBind();

这就是我所做的,但没有显示静止图像。

4

1 回答 1

1

将您的 ftp 文件夹映射到虚拟目录。

用于Directory.GetFiles列出所有文件。

您可以将此列表绑定到转发器或列表控件,并将其与虚拟目录路径结合以显示图像

于 2012-09-07T11:26:05.370 回答