I'm just getting into ASP.NET web pages with Razor. Based on what it has to offer, would you choose it for your application? It seems to me the ASP.NET MVC framework gives Razor more of an edge because of everything MVC has to offer; it's nice that the web pages framework has some helper components from the WebMatrix DLL, but most of the examples having all the code in one file, plus the reliance on a new set of API's (via webmatrix) is a turnoff to me.

What do you think?

Thanks.

link|improve this question

2  
If you're doing Web Forms, you shouldn't be writing any code in your .ASPX page to begin with. – Phill Jul 20 '11 at 2:56
@Phill What? Surely you jest – Michael Haren Jul 20 '11 at 2:59
1  
@Michael - I surely don't. Unless of course you want to contribute to the unmaintainable mess people have created with Web Forms over the past 10 years. Then blame the technology. "ohh web forms are crap, viewstate is crap, i don't understand how to use it correctly but it's all crap!". – Phill Jul 20 '11 at 3:10
feedback

closed as not a real question by Mrchief, routeNpingme, blowdart, Adam Maras, C. A. McCann Jul 20 '11 at 3:43

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

Razor View Engine + ASP.NET MVC is a great combination. Razor definitely seems like the view engine of choice most of the time because it is syntactically much easier to read and work around than ASPX. This benefit alone is huge because you can have developers that are solely focused on HTML and UI development, and have them be able to work around the syntax.

The biggest problem with Razor so far has been it's intellisense support. But, it looks as if the latest version of ReSharper solved that problem nicely, and I'm sure the support for Razor will continue to get better.

link|improve this answer
I agree. I've been super pleased with my Razor dabbling. Also, maybe it's just be but the generated markup is much cleaner in the cases I've used it. – Rig Jul 20 '11 at 2:57
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.