Getと関連するPostの2つのメソッドがあります。
public ActionResult Edit(string id){...}
[HttpPost]
public ActionResult Edit(MyModel model){...}
Postメソッドで、Getメソッドのidパラメーターを取得したいと思います。出来ますか?
現在、私が行っているのは、フォームパラメータとしてidを渡すことです。
[HttpPost]
public ActionResult Edit(string id, MyModel model){...}
他の方法はありますか?