HTML and CSS Reference
In-Depth Information
Figure 3-6. The blank Register form
8.
if you look at the page's source or the Page inspector, the actual HTMl will be
similar to:
<input class="text-box single-line" data-val="true"
data-val-required="The Email address field is required."
id="Email" name="Email"
placeholder="Enter an e-mail address" type="email" value=""/>
9.
Close the browser and stop the debugger.
Ti As with the previous chapter, i will be using the opera browser for most of the exercises since it has the
best support for the new input types.
attrIBUte DrIVeN VaLIDatION
Data validation in AsP. nET MVC starts with the model. if you look at the AccountModel.cs file you'll see
metadata attributes such as Required attached to each property. For example, the Username property looks
like this:
[Required]
[Display(Name="User name")]
public string UserName { get; set; }
 
 
Search WWH ::




Custom Search