首页 > 学院 > 开发设计 > 正文

asp.net 跑马灯 怎样从文件夹里读取图片,怎样实现?

2019-11-17 03:40:34
字体:
来源:转载
供稿:网友

问:asp.net 跑马灯 怎样从文件夹里读取图片,怎样实现?

答:
DirectoryInfo imagesfile = new DirectoryInfo(Server.MapPath("../images/"));
        Repeater1.DataSource = imagesfile.GetFiles("*.jpg");
        Repeater1.DataBind();

引用的时候重要的是路径,路径写成你自己的。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表