
How can I send the HTTP response back to the user but still do more things on the server after that
By: a guest on
Feb 22nd, 2012 | syntax:
None | size: 0.13 KB | hits: 7 | expires: Never
public ActionResult DoSomething()
{
Task t = new Task(()=>DoSomethingAsynchronously());
t.Start();
return View();
}