Suppose we have an ActionMethod with an int parameter:
public ActionMethod Create(int? id) { . . . return View(); } And there is another ActionMethod (in the same controller) in which we redirect to the first method:
public ActionMethod Index() { . . . . return RedirectToAction("Create"); } Question: how to pass a parameter (say id = 5) to Create(int? id) ?