What happens under the hood when we click one one of the tabs? (Newest, Featured, Faq, etc).
There's a querystring sort on the URL which identifies the type of sort, or in some cases the type of filter (at least in the case of Unanswered and Active).
Does each sort type use a seperate ActionResult or is there one ActionResult for sorted results and one for filtered results?
My guess is that a querystring was used instead of a seperate routing URL because some actions use one ActionResult and others user another. (or something similar).
Is this how it works or is there something much more in-depth going on?