Prob with asp controls
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
there are few image controls in my(asp.net) web page.i want to reset all the imageURL property in one foreach loop. foreach(System.Web.UI.Control mycontrol in this.Controls) { if(mycontrol is System.Web.UI.WebControls.Image) { System.Web.UI.WebControls.Image cc = (System.Web.UI.WebControls.Image)mycontrol; cc.ImageUrl = "../../Icons/btn-red.gif"; } } but it's not working can some body provide better solution thanks amal