私は、photogallery という名前のフォルダーを含む ftp で自分の Web サイトをホストしました。今、私がする必要があるのは、自分のページが要求されたときに、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();
これは私が行ったことですが、まだ画像が表示されません。