I have a datatable with one column that contain names.I want to load combobox with datatable such that names should be in alphabetic order for eg:first name starts with a. s
Here's the answer that you're looking for.
DataTable MyDataTable; const string SortByClause = "[SomeCol] ASC"; MyDataTable.DefaultView.Sort = SortByClause ;