Try this:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
GenImage()
End If
End Sub
Sub GenImage()
Dim a As ArrayList = New ArrayList
a.Add("bl.gif")
a.Add("bc.gif")
a.Add("cc.gif")
For Each s As String In a
RadioButtonList1.Items.Add(New ListItem("<img src=""" + s + """/>", s))
Next
End Sub
and this on the html page
<asp:RadioButtonList id="RadioButtonList1" runat="server"></asp:RadioButtonList>
-ron