InterviewSolution
Saved Bookmarks
| 1. |
What is Razor View Engine in ASP.NET MVC? |
|
Answer» Razor View Engine in ASP.NET MVC is a simple-syntax view engine used for creating a view of an application. It was released in JANUARY 2011 for Microsoft Visual Studio as a part of ASP.NET MVC 3. Razor will make USE of C# syntax for the PURPOSE of embedding code in a page without the usage of ASP.NET delimiters: <%= %>. The file extension of Razor is “cshtml” for the C# PROGRAMMING language. It supports Test Driven Development(TDD) as it will not be dependent on the System.Web.UI.Page class. |
|