1. public ActionResult DoSomething()
  2. {
  3. Task t = new Task(()=>DoSomethingAsynchronously());
  4. t.Start();
  5.  
  6. return View();
  7. }