tal_181
March 21st, 2006, 06:11 PM
Hello all!!!
How can I add new image control at run time ???
How can I add new image control at run time ???
|
Click to See Complete Forum and Search --> : add image control at run time !!! tal_181 March 21st, 2006, 06:11 PM Hello all!!! How can I add new image control at run time ??? mcmcom March 21st, 2006, 07:49 PM on your page load event if(!IsPostBack) { System.Web.UI.WebControls.Image i = new Image(); i.ImageUrl = "myurl"; this.Controls.Add(i); } hth codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |