how can add html image control in runtime using asp net
how can add html image control in runtime using asp net eg, i m default ading 1 image control in page i m inserting 2 or more images. how can show all images in image conctrol
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manoj BhoirPosted Jul 9, 2015, 9:06 AM
Image imgCodeIcon = new Image()
{
ID = "imgCodeIcon",
ImageUrl = "../Images/Code-icon.gif",
Width = 15,
Height = 11
};
Controls.Add(imgCodeIcon);
Upendra Pratap ShahiPosted Jul 9, 2015, 8:29 AM
Najim MullaPosted Jul 9, 2015, 7:28 AM
Upendra Pratap ShahiPosted Jul 9, 2015, 6:43 AM
Nilesh JadavPosted Jul 9, 2015, 6:31 AM