This chapter focuses on adding, sorting, and paging products and adding support for friendly URLs to use the ASP.NET Routing feature.
Note
If you want to follow along with the code in this chapter, you must either have completed Chapter 4 or download Chapter 4’s source code for from www.apress.com as a starting point.
Sorting Products by Price
To demonstrate sorting, I’ll show you a simple example to sort products by price, allowing users to order products by price.
First of all, add a new switch statement to the Index method of the Controllers\ProductsController.cs file, ...