ASP.NET MVC: routing help
问题 Consider two methods on the controller CustomerController.cs : //URL to be http://mysite/Customer/ public ActionResult Index() { return View("ListCustomers"); } //URL to be http://mysite/Customer/8 public ActionResult View(int id) { return View("ViewCustomer"); } How would you setup your routes to accommodate this requirement? How would you use Html.ActionLink when creating a link to the View page? 回答1: In global.asax.cs, add following (suppose you use the default mvc visual studio template)