Obtain the image file name in Exitjs DataView.

Source: Internet
Author: User

Obtain the image file name in Exitjs DataView.

1. Front-end

Copy to ClipboardReference: [www.bkjia.com] <script type = "text/javascript" language = "javascript">

Function aa ()
{
Var selNode = this. DataView1.getSelectedNodes () [0];
Alert (selNode. id );
}
</Script>

2. Background

Copy to ClipboardReference: [www.bkjia.com] protected void Page_Load (object sender, EventArgs e)

{

String path = Server. MapPath ("images/thumbs ");

String [] files = System. IO. Directory. GetFiles (path );

List <object> data = new List <object> (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 ();

}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.