asp.net 跑马灯 怎样从文件夹里读取图片,怎样实现?
2010-07-11 17:43:02 来源:WEB开发网核心提示:问:asp.net 跑马灯 怎样从文件夹里读取图片,怎样实现?答:DirectoryInfo imagesfile = new DirectoryInfo(Server.MapPath("../images/")); Repeater1.DataSource = imagesfile.GetFil
问:asp.net 跑马灯 怎样从文件夹里读取图片,怎样实现?
答:
DirectoryInfo imagesfile = new DirectoryInfo(Server.MapPath("../images/"));
Repeater1.DataSource = imagesfile.GetFiles("*.jpg");
Repeater1.DataBind();
引用的时候重要的是路径,路径写成你自己的。
[]
更多精彩
赞助商链接