I notice Scott Guthrie is starting to mention Razor a fair bit on his blog but I\'m just not that sure that it\'s a good fit for my style.
Granted it\'s a fairly unf
Personally I really appreciate the reduction in how many escape characters are used. Using <% %>
gets very tedious when compared to @{}
and is not nearly as syntactically appealing.
Moreover, writing a whole definition for the codebehind and page is simplified to a single @model model
.
As also noted by marcind, not having to always include runat=server
is very nice also.
Overall, I really appreciate using the Razor engine and find it not only makes things easier on me to develop but also makes code easier to read.