3

次のようなアクションがあるとします。

[HttpPost]
public ActionResult(MyObject obj)
{
  //Do a SQL insert that gets an Id for obj

  //Do some long-running operation in the background - don't wait for it to finish

  //Return a report of the object
  return View(obj);
}

最後に表示されるように、POST 後に URL を変更する方法はあります?id=1234か? (ユーザーがページを共有したかのように) GET を実行するための同等のアクションがあり、レポートを表示したいだけです。

4

1 に答える 1