I'm not an expert but googling a bit I find this one:
If your proyect it's MVC try with:
return RedirectToAction("Index", "Home");
If your proyect it's Razor, try with:
return Redirect("~/");
and you might be redirected to the homepage.
Good luck