Tuesday, October 14, 2008

Don't name your View "View"

but if you must don't try to use code like this:
  1. public class PostController : Controller  
  2. {   
  3.  public ActionResult View()  
  4.  {  
  5.   ViewData["Title"] = "View Post";  
  6.   return View();  
  7.  }  
  8. }  
Obviously you'll just end up with a StackOverflowException. ActionName attribute to the rescue!
  1. [ActionName("View")]  
  2. public ActionResult Show()  
  3. {  
  4.  ViewData["Title"] = "View Post";  
  5.  return View();  
  6. }  
It's strange what working in a different environment or with different technology can lead you to make the most simple mistakes :)

No comments:

Post a Comment