[Required(ErrorMessage = "This Feild is Required")]
public string EMP_ID { get; set; }
[Required(ErrorMessage = "This Feild is Required")]
public string ADDR_FIX { get; set; }
public string ADDR_TEMP { get; set; }
public string SUR_NAME { get; set; }
[Required(ErrorMessage = "This Feild is Required")]
public string EMP_CONTACT_NO { get; set; }
public string DESIG { get; set; }
public string DEPT { get; set; }
public string PASSWORD { get; set; }
public string PHONE_VARIFICATION { get; set; }
当我在模型上使用DataAnnotation时。在视图中,我看到了一些 JavaScript 验证代码。我还没有为此编写任何代码,但不知何故它仍然存在。
我想知道它是如何工作的。