tags:

views:

32

answers:

2

Hi

I have one Listbox and a List of data

I want to bind the list to listbox.

So any Idea any example please

+3  A: 

Hi,

lstbx.DataSource = list;

lstbx.DisplayMember = "FirstName";

http://sharpertutorials.com/list-box-data-binding/

Geetha
+3  A: 

you Can bind your data to the listbox.

as bellow

ListBox1.DataSource = listSource;
ListBox1.DataBind();
Umakanta.Swain