What is the most usual way to develop views in asp.net mvc? Should I be using a view engine other than the default? As far as I know, StackOverflow is the bigger site using ASP.NET MVC, so, what they use?
In the pros of using view engines, it seems like they are easier than the default. In the cons, it seems that they break the original concept of views in ASP.NET MVC (using helpers), they are not very extendable and there aren't intellisense or sintax highlight on Visual Studio IDE for them.
What would you recommend me to do?