⟩ 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 *@
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 *@
When using aspx view engine, to have a consistent look and feel, across all pages of the application, we can make use of asp.net master pages. What is asp.net master pages equivalent, when using razor views?
When using razor views, do you have to take any special steps to proctect your asp.net mvc application from cross site scripting (XSS) attacks?
What symbol would you use to denote, the start of a code block in aspx views?
In razor syntax, what is the escape sequence character for @ symbol?
What symbol would you use to denote, the start of a code block in razor views?
What are the 2 popular asp.net mvc view engines?
What type of filter does OutputCacheAttribute class represents?
What filters are executed in the end?
Is it possible to cancel filter execution?
Is it possible to create a custom filter?