欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

Exitjs获取DataView中图片文件名_extjs

程序员文章站 2022-05-10 11:07:17
...
1、前台
复制代码 代码如下:



2、后台
复制代码 代码如下:

protected void Page_Load(object sender, EventArgs e)
{
string path = Server.MapPath("images/thumbs");
string[] files = System.IO.Directory.GetFiles(path);
List data = new List(files.Length);
foreach (string fileName in files)
{
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 = data;
this.Store1.DataBind();
}