型号:
public class Employee
{
public string Id { get; set; }
[StringLength(10, MinimumLength = 5)]
[Required]
public string Name { get; set; }
public string Email { get; set; }
[Range(1, 100)]
public int Age { get; set; }
}
我是asp.net MVC的新手。我正在使用模型数据注释提供验证。
我的问题是,UnobtrusiveJavaScriptEnabled
false
Web.Config
ClientValidationEnabled
验证后,即使true
设置为ClientValidationEnabled
,验证也不再有效吗?
仅针对客户端的数据注释,因为当我将false
设置为infraredFrameLongExposureReader.FrameArrived += InfraredFrameLongExposureReader_FrameArrived;
时,有效性不再有效吗?我真的很困惑。