当前位置:主页 > 软件编程 > .NET代码 >

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

时间:2021-03-05 12:42:25 | 栏目:.NET代码 | 点击:

前台:
复制代码 代码如下:

<asp:DataList ID="DataList1" runat="server" RepeatDirection="Horizontal" RepeatColumns="5"
CellSpacing="25">
<ItemTemplate>
<img src="<%# Eval("FullName") %>" width="50" height="50" border="0" >
</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();

您可能感兴趣的文章:

相关文章