Is there any difference between Razor and ASPX in a MVC project?
Is it just about syntax? That's what I think after reading this... Am I wrong?
|
Is there any difference between Razor and ASPX in a MVC project? Is it just about syntax? That's what I think after reading this... Am I wrong? |
|||
|
|
|
I guess it does boil down to that, yes. As you can see from the examples in the article, the syntax is very lightweight and the interpreter is quite "smart". You can compare it to the spark view engine and see the differences between the three. |
||||
|
|
|
It all boils down to syntax in your webpage view, but ASPX and Razor are pretty different view engines. Razor doesn't depend on the same pipeline that ASPX does. Because of that, I'd consider Razor to be just a parsing engine. One of the advantages of that is that you can have a Razor parser run against any string, where aspx needs an httpcontext and other heavyweight elements. |
|||
|
|
|
Razor is an alternative view engine for Asp.net MVC apps, and is implemented by entirely different code than .aspx. It's like the difference between JSP and Velocity in a Java MVC web app. |
|||
|
|