You can control the way items are rendered by using the ItemTemplate
property of RadListBox. Do not forget to call the DataBind method
if you are using databinding expressions (<%# %>) in the template
Example
ASPX
<telerik:RadListBox runat="server" ID="RadListBox1">
<ItemTemplate>
<img src='<%# DataBinder.Eval(Container, "Value") %>' />
<%# DataBinder.Eval(Container, "Text") %> -
<%# DataBinder.Eval(Container, "Attributes['Price']") %>
</ItemTemplate>
</telerik:RadListBox>
C#
public void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
RadListBox1.DataBind();
}
}
VB.NET
Public Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
RadListBox1.DataBind()
End If
End Sub