I'm using this code to dynamically generate imagebutton when retrieve images in img folder in ASP.net Web Application Project.
private void OpenImage()
{
foreach (string strFileName in Directory.GetFiles(Server.MapPath("~/img/")))
{
ImageButton imageButton = new ImageButton();
FileInfo fileInfo = new FileInfo(strFileName);
imageButton.ImageUrl = "~/img/" + fileInfo.Name;
imageButton.Width = Unit.Pixel(100);
imageButton.Height = Unit.Pixel(100);
imageButton.Style.Add("padding", "10px");
imageButton.Click += new ImageClickEventHandler(imageButton_Click);
Panel1.Controls.Add(imageButton);
}
}
Now I want to display this within div tag that also generate dynamically. Any Suggestions Guys?
You can create a
<div>
(or any plain HTML element) in code behind with theHtmlGenericControl
class, and use that to wrap yourImageButton
any way you want. For example: