1、前台
2、後台
protected void Page_Load(object sender, EventArgs e)
{
string path = Server.MapPath("images/thumbs");
string[] files = System.IO.Directory.GetFiles(path);
リスト<オブジェクト>データ = 新しいリスト<オブジェクト>(files.Length);
foreach (ファイル内の文字列 fileName)
{
System.IO.FileInfo fi = new System.IO.FileInfo(fileName);
data.Add(new { name = fi.Name,
url = "images/thumbs/" fi.Name,
size = fi.Length,
lastmod = fi.LastAccessTime });
}
this.Store1.DataSource = データ;
this.Store1.DataBind();
}