Appending ?param= to mvc routes
Some MVC sites have querystring params appended to the route Url (of which I noticed StackOverflow does), such as: https://stackoverflow.com/questions/tagged/java ?page=9802&sort=newest&pagesize=15 What are the advantages of having the parameters as more conventional ?querystring params, rather than /param/values/ ? Also, how are these params appended to routes that have been set up? I'm familiar with setting up mvc routes with params like "users/details/{id}" etc. but don't know how to configure routes for use with 1 or more ?params as per the example url above? Query string parameters are