0
我正在使用DataAnotation進行驗證,我需要在某些情況下禁用它。對插入和編輯的不同驗證
F.E.在創建我需要用戶插入密碼和確認,但編輯它可以保持空白,不會改變。
我有這樣的模式:關於修改密碼需要
[Required]
[DataType(DataType.Password)]
public string Password { get; set; }
[DisplayName("Re-enter Password")]
[Compare("Password", ErrorMessage = "The password and confirmation do not match.")]
public string PasswordControl { get; set; }
足夠多vould是禁用。