If you are already dynamically creating your radio button list within the ItemDataBound event, you should be able to do something like the following: VB.Net Dim myImage as System.Web.UI.WebControls.Image = new System.Web.UI.WebControls.Image myImage.ImageUrl = "http://www.google.com/images/logo_sm.gif" e.Item.Controls.Add(myImage) C# System.Web.UI.WebControls.Image myImage = new System.Web.UI.WebControls.Image(); myImage.ImageUrl = "http://www.google.com/images/logo_sm.gif"; e.Item.Controls.Add(myImage); Levi Rosol Blog By Levi[^] Two Rivers Marketing[^]