I have an ASP.NET MVC applications and i don't want to explicitly write the actions or the views names like this :
return RedirectToAction("Index"); or return View("Home");
what is the best practice for handling those strings?
I use Visual Studio 2010 and ASP.NET MVC2