Sql – List order – What UI is best

asp.netsql serveruser interface

I deal with a lot of lists of data in many scenarios CRM's, CMS's etc etc

However i now require the need to have a UI in the administration area in order to arrange the display order on the navigation menu for example on the front facing website.

I already have a column in my sql database [Order] as an int. I am building in asp.net and can't decide the best way to achieve my desired result / controls to use.

What are the best practices in achieving this or your recommendations.

Thanks

Best Answer

I've used the ListView control for something very similar to this. This would allow you to keep using your [Order] column and wouldn't require any changes to your database.

(By the way, my users are all 45++ years old and they all hate computers...but they're THRILLED with the simplicity of the ListView control.)