Откуда взялась эта проверка? - PullRequest
0 голосов
/ 14 ноября 2018

У меня есть своя проверка, но это всплывающее окно переопределяет неправильный адрес электронной почты. Я хочу использовать свой собственный.

Как это отключить?

Firefox: enter image description here

IE: enter image description here

код:

@Html.EditorFor(model => model.mForgottenLogin.Email, new { htmlAttributes = new { id = "txtEmail" , @class = "form-control" } })
@Html.ValidationMessageFor(model => model.mForgottenLogin.Email, "", new { @class = "text-danger ErrorBackgroundHighlight" })

Код от инспектора:

<input class="form-control text-box single-line" data-val="true" data-val-email="Please enter a valid email address" data-val-required="The email address is required" id="txtEmail" name="mForgottenLogin.Email" value="" type="email">

1 Ответ

0 голосов
/ 14 ноября 2018

Измените тип ввода с электронная почта на текст .

От: @Html.EditorFor(model => model.mForgottenLogin.Email, new { htmlAttributes = new { id = "txtEmail" , @class = "form-control" } })>

Кому: @Html.EditorFor(model => model.mForgottenLogin.Email, new { htmlAttributes = new { id = "txtEmail" , @class = "form-control" , @type= "text" } })

...