查询字符串绑定
要扩展路由绑定,请说你有一个像 https://stackoverflow.com/questions/1558902?sort=desc
这样的网址
和 {controller=Home}/{action=Index}/{id?}
这样的路由
public ActionResult Index(int? id, string sort){
//sort would bind to the value in the query string, i.e. "desc"
}