Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个密码字段[Range(5, 10)]。
[Range(5, 10)]
如果我输入 5 到 10 之间的正确值,它无论如何都会显示消息错误。这可能是什么原因造成的?
Range 属性用于确定字段的最小和最大数值应该是多少。如果您尝试设置最小/最大长度,我建议您使用[StringLength(10, MinimumLength=5)]属性在属性上设置此约束,这将满足您的需求
[StringLength(10, MinimumLength=5)]