我已经在包含名为 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();
这就是我所做的,但没有显示静止图像。