在mvc视图中进行电子邮件验证?

时间:2016-02-03 17:58:30

标签: asp.net asp.net-mvc-4

我知道我们可以在MVC的Model类中添加Regular Expression但我想知道有没有办法在MVC视图中添加它。

   <div class="form-group">
                            @Html.LabelFor(model => model.Email, new { @class = "control-label" })
                            @Html.TextBoxFor(model => model.Email, new { @class = "form-control", @placeholder = "E mail", @required = "Required", @type = "email" })
                            @Html.ValidationMessageFor(model => model.Email)
                        </div>

通过使用@ type =“email”我必须将@放在文本框中,例如abc @ abc,但它允许我在不输入.com即abc@abc.com的情况下提交表单,那么如何强制它要求用户输入“。”在电子邮件中提交表格。 感谢

0 个答案:

没有答案