- What is the default validation provider for the model state?
It is the Data Annotations API.
- What is an action?
A method that can be called on a controller in response to an HTTP request.
- What is globalization and how does it differ from localization?
Globalization means your application will support multiple cultures. Localization is the process of making your application work and react accordingly to a specific culture.
- What is temporary data used for?
Temporary data is used to persist data between two subsequent requests for the same client, like a micro-session.
- What is a cache good for?
A cache is useful for data that either takes a long time to produce or to retrieve. We store...