Sorting a DropDownList? - C#, ASP.NET

前端 未结 23 1066
慢半拍i
慢半拍i 2020-12-08 19:17

I\'m curious as to the best route (more looking towards simplicity, not speed or efficiency) to sort a DropDownList in C#/ASP.NET - I\'ve looked at a few recommendations b

23条回答
  •  感情败类
    2020-12-08 20:09

    To sort an object datasource that returns a dataset you use the Sort property of the control.

    Example usage In the aspx page to sort by ascending order of ColumnName

    
    

提交回复
热议问题