To override the behavior described above, if you wanted to return the...
Models are implemented in:
The EF uses a special table to help keep updated on changes between...
The default project generated by Visual Studio gives you 2 Controllers...
The generated Visual Studio default web site gives you the...
Multiple Validation Annotations can be applied to a C# property by...
The default behavior of the HomeController is to take requests for...
The MVC framework can use a Controller to put text in the browser as a...
Many helpers, such as the TextArea Helper output values that are HTML...
MVC Views are part of a templating system which can dynamically...
If you type: '@Html.' and after typing the dot, the...
HTML helpers address all of the following web site code challenges...
An MVC View will render its data to the user:
Strongly typed Views have all of the following benefits except:
The validation support in MVC includes which of the following (select...
Not as robust as strongly typed View(s), but often used to pass...
In the following code fragment from a View cshtml file, the...
The entire internet world of online commerce would crumble tomorrow if...
Which MVC component represents a set of classes that describe the...
Models in an MVC application are the objects you want to (choose all...
Many MVC validation annotations include an option for a custom error...
If the built-in validation annotations do not fit your scenario, you...
Self-validating models can be created by implementing which interface?
This line of code is an example of using Routes.GetVirtualPath(),...
Which MVC component represents a set of classes that describe the...
So far in this course, we have focused on the scaffolding for which:
MVC Views have Helpers for more than just the HTML property. There are...
The HttpUtility.HtmlEncode utility method (select all that apply):
From the standpoint of ASP.NET MVC, validation is all of the following...
MVC framework gives you access to the following helpers except:
Validation in the MVC design pattern context deals mostly with...
Model classes are typical C# data object classes with (select all that...
In a strongly typed view, setting a model type for a view, you can use...
When you create a View from the dialog, you can choose from some...
Which MVC component group receives the request from the...
The de facto standard wizard setting selections for creating an...
The default Views in an MVC project will supply you with 3...
What advantages are there to Model binding? (select all that apply)
When a controller action has the code "return View();" this...
Scaffolding can do all of the following (select all that applies):
Why is it important for MVC programmers to cover the HTML Form tag in...
The Entity Framework supports the following approaches (select all...
Make the best matches between the kind of method request with the...
Describe the following Razor syntax fragments:
Outline the basic differences between GET and POST by matching the...
Outline the basic differences between GET and POST by matching the...
Match more of the example validation annotations with their intended...
Match up the EF loading strategies below:
You can use Database initializers in to keep your database in sync in...
Match up the standard MVC directory structure with the logical...
Match the following matches based on sad path and happy path:
Put the following events in order from the standpoint of an MVC...
An HTML form is the basic container for input elements to create a GET...
For passing information from the Controller to the View, it is...
Some of the common attributes that cover most common validation...