對映操作 - 方法引數

如果 URL 中有另一個值,例如:/ Example / ProcessInput / 2,則路由規則將威脅最後一個數字作為傳遞給控制器​​示例的操作 ProcessInput 的引數。

public ActionResult ProcessInput(int number)
{
    ViewData["OutputMessage"] = string.format("The number you entered is: {0}", number);
    return View();
}