After setting up the data source, you need to bind the data:
ListBox1.DataBind();
If you do not set the ListBox.DisplayMember property, the binding will use your ToString() objects for the text of the element. In your case, when you use List, you do not need to install DisplayMember .
source share