It's similar. You see you can bind any IEnumerable object to a listbox.. DataSets, DataTables, List (of [Object]), Arrays etc.. so you might have something
ddlDropDownList1.DataSource=[IENumerable DataSource]
ddlDropDownList1.DataBind()
that would bind the data provided you were using a...