Fresh Model View Controller (MVC) Interview Questions & Answers:
Layout pages, can define sections, which can then be overriden by specific views making use of the layout. Defining and overriding sections is optional.
2. What are the file extensions for razor views?
1. .cshtml - If the programming lanugaue is C#
2. .vbhtml - If the programming lanugaue is VB
3. How do you specify comments using razor syntax?
Razor syntax makes use of @* to indicate the begining of a comment and *@ to indicate the end. An example is shown below.
@* This is a Comment *@
To have a consistent look and feel when using razor views, we can make use of layout pages. Layout pages, reside in the shared folder, and are named as _Layout.cshtml
No, by default content emitted using a @ block is automatically HTML encoded to protect from cross site scripting (XSS) attacks.
6. In razor syntax, what is the escape sequence character for @ symbol?
The escape sequence character for @ symbol, is another @ symbol
9. What are the 2 popular asp.net mvc view engines?
1. Razor
2. .aspx
https://InterviewQuestionsAnswers.ORG.