Let's say I have an action like this:
[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);
}
Is there a way to modify the URL after the POST so it will display ?id=1234 at the end? There is an equivalent action for doing a GET (as if the user shared the page), and I'd like to just display the report.