0
[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驗證代碼。我沒有爲此編寫任何代碼,但不知何故它仍然存在。註釋如何工作?
我想知道它是如何工作的。