I was wondering if Razor views could be compiled just like WebForm based views? Does it even make sense to compile Razor views and why would somebody want to do that?
|
Yes, you can. Take a look at the following post: Compile your asp.net mvc Razor views into a seperate dll It's a "step-by-step" guide on how to compile your razor views into a separate dll. I don't know if that's what you aim to do but it'll definitely get you in the right direction. |
|||||
|
To make your views to be compiled, do the following;
after you build your solution to compile it, you will see that your view will be compiled too. NOTE: to test it, break some code in one of your view on purpose and try to build. you will see that you'll get an error message. |
|||||
|
|
|
Yes, it's possible. In fact, the best example I can think of would be email templating engines. If you compile and cache the template, then you can quickly rip off emails without having to go through the parsing all over again. That's a good example of using Razor outside of MVC as well. |
|||
|
|