本文介绍了此代码的说明的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请给我解释此代码.在此代码中,gvfiles是gridview的名称.

Please give me the explanation for this code. In this code gvfiles is the name of a gridview.

private void BindData()
        {
            var files = Directory.GetFiles(Server.MapPath("~/Files"));

            gvFiles.DataSource = from f in files
                                 select new
                                 {
                                     FileName = Path.GetFileName(f),
                                     FilePath = f
                                 };
            gvFiles.DataBind();
        }

推荐答案


这篇关于此代码的说明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-15 22:13