Tag: itemdatabound

如何仅将文件夹中的某些图像显示到ASP.NET中的Repeater中

我有一个Repeater,它将我的所有图像都放在一个文件夹中并显示它。 但是我必须做什么代码更改只允许让我们在我的转发器中显示Image1.jpg和Image2.jpg。 我不希望转发器显示我文件夹中的所有图像。 我的中继器 我的代码背后 – PAGE LOAD protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { string sBasePath = System.Web.HttpContext.Current.Request.ServerVariables[“APPL_PHYSICAL_PATH”]; if ( sBasePath.EndsWith(“\\”)) sBasePath = sBasePath.Substring(0,sBasePath.Length-1); sBasePath = sBasePath + “\\” + “pics”; System.Collections.Generic.List oList = new System.Collections.Generic.List(); foreach (string s in System.IO.Directory.GetFiles(sBasePath, “*.*”)) { //We could do some filtering for example only […]