アクションにリダイレクトするときにパラメーターを渡し、そのパラメーターをモデルにバインドしたいと思います。これが私がこれまでに持っているものです、誰かがこれを行う方法を教えてもらえますか?
リダイレクトを実行しているアクションは、次のステートメントを使用します。
return RedirectToAction("TwinWithFacebook", new { id = facebookID });
次に、私の取得は:
[HttpGet]
public ActionResult TwinWithFacebook(long id)
{
//use viewdata to store id here?
return View();
}
そして私の投稿:
[HttpPost]
public ActionResult TwinWithFacebook(FacebookConnectModel fbc)
{
//assign this here?
//fbc.facebookId = id;