I am new to ASP.NET and C#. I am trying to retrieve all images from folder and show it on page, but it\'s only selecting one image.
My ASP.NET code:
You can dynamically add new asp:image objects to the form1.
Image img = new Image(); img.ImageUrl = dr["Image_Path"].ToString(); img.AlternateText = "Test image"; form1.Controls.Add(img);