1
Answer

display the image in table control

Photo of Basheer Mohamed

Basheer Mohamed

17y
1.9k
1
how to display the image in table control using asp.net in c#?

Answers (1)

0
Photo of Dipen Lama
NA 331 195.9k 18y
Use Place holder control to place the user control dynamically.
Here is some lines:

    string userControlName = "UserControl1.ascx"; 
 
    Control control1 ;
    control1 = LoadControl( userControlName );
    placeHolderControl1.Controls.Clear();
    placeHolderControl1.Controls.Add( control1 );