How to handle actions and views names in my ASP.NET MVC application?
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?
There is a T4 based approach to creating ASP.NET MVC strongly typed helpers.
T4 Template
Source on Stackoverflow
T4 Template
Source on Stackoverflow
Comments