我有一個Asp.Net MVC項目。我正在嘗試爲editorFor進行電子郵件驗證。html helper的電子郵件驗證 - ASP.Net
基於我所研究的方法[在這個答案:How to apply input which has a type email to to HTML Helper in Asp.net MVC3 Razor更多...]做到這一點是這樣的:
@Html.EditorFor(model => model.Email, new { htmlAttributes = new { @class = "form-control", @dir="ltr", @type = "email"} })
唯一的問題是,這可以確保我有此模式: name @ gmail 但它不確定是否有。在@ - [[email protected]]之後某處的電子郵件地址。
關於我能做什麼的任何想法? 感謝
你讀過[this](http://stackoverflow.com/a/16690164/1663001)回覆你關聯的帖子嗎? – DavidG
刪除'new {@type =「email」}''並將'[EmailAddress]'屬性添加到你的屬性 –