In looking at samples of ASP.NET MVC sites, I\'m seeing quite a bit of examples with embedded logic in the views, e.g.:
<% if (customerIsAllowed) { %&g
Here's another way to think about it. Presentation logic goes in the view. Business processing logic goes in the controller, and data validation goes in the model. But what goes where should ultimately be guidance and not religion:)