Guest User

How can I send the HTTP response back to the user but still do more things on the server after that

a guest
Feb 22nd, 2012
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. public ActionResult DoSomething()
  2. {
  3. Task t = new Task(()=>DoSomethingAsynchronously());
  4. t.Start();
  5.  
  6. return View();
  7. }
Add Comment
Please, Sign In to add comment