Would like to have clickable column titles eg click on TagCode once and it orders by that, and again it reverses. Same for Number.
Using MVC3/Razor and LightSpeed (ORM).
I know that a grid eg http://mvccontrib.codeplex.com/ may be the way forward. But as I don’t need paging or filtering, I’d like to keep it simple for now.
Problem Is there a simple example of code (maybe with an up/down icon) that would help?

@Dave
Sorry, I missed your main point in my first answer
If you want to implement sorting using pure MVC3,
I can do that with following steps
I uploaded source code here
List action method
Html helper method
List View page
…
@Html.ActionLinkWithColumnOrder(“TagCode”, “Index”, (string)ViewBag.sortColumn, (bool)ViewBag.asc)
…
@Html.ActionLinkWithColumnOrder(“Number”, “Index”, (string)ViewBag.sortColumn, (bool)ViewBag.asc)
Happy Mvcing!
Sangsu PARK (http://supremeware.blogspot.com)