首页 > 编程 > .NET > 正文

asp.net 获取文件夹中的图片的代码

2024-07-10 13:24:27
字体:
来源:转载
供稿:网友
前台:

复制代码 代码如下:


<asp:DataList runat="server" RepeatDirection="Horizontal" RepeatColumns="5"
CellSpacing="25">
<ItemTemplate>
<img src="<%# Eval("FullName") %>" >
</ItemTemplate>
</asp:DataList>


后台代码:

复制代码 代码如下:


string path = Server.MapPath("img");//获取img文件夹的路径
Response.Write(path);
DirectoryInfo di = new DirectoryInfo(path);
//DataList1.DataSource = di.GetFiles("*.jpg");只获取jpg图片
DataList1.DataSource = di.GetFiles();//获取文件夹下所有的文件
DataList1.DataBind();

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