How to apply input which has a type email to to HTML Helper in Asp.net MVC3 Razor

前端 未结 3 1790
情深已故
情深已故 2021-02-13 16:26

How to apply input which has a type email to HTML Helper in Asp.net MVC3 Razor. For example:

 

        
3条回答
  •  梦毁少年i
    2021-02-13 17:01

    The below code has worked for me perfectly. By default @Html.TextBoxFor creates but specifying the type="email" property makes it

    @Html.TextBoxFor(model => model.EmailId, new { @class = "popinputbox", placeholder = "Email ID", type = "email" }) @Html.ValidationMessageFor(model => model.EmailId, "", new { @class = "errormsg" })

    The problem gets solved. BINGO !!

提交回复
热议问题