public ActionResult DoSomething() { Task t = new Task(()=>DoSomethingAsynchronously()); t.Start(); return View(); }