⟩ What is the significance of NonActionAttribute?
In general, all public methods of a controller class are treated as action methods. If you want prevent this default behaviour, just decorate the public method with NonActionAttribute.
In general, all public methods of a controller class are treated as action methods. If you want prevent this default behaviour, just decorate the public method with NonActionAttribute.
What is the significance of ASP.NET routing?
How do you specify comments using razor syntax?
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?