有人有 C# MVC 的出生日期验证属性吗?
之前一定有人写过这个:-)
我需要一个出生日期的验证属性来检查该日期是否在特定范围内 - 即用户没有输入尚未发生的日期或距该日期 150 年的日期过去的。
感谢您的指点!
Someone must have written this before :-)
I need a validation attribute for date of birth that checks if the date is within a specific range - i.e. the user hasn't inputted a date that hasn't yet happened or is 150 years in the past.
Thanks for any pointers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我创建了一个验证类,可以在其中验证数据。在我的课程中,我有两种验证出生日期的方法:一种采用字符串参数,另一种采用日期参数。
这是基本方法:
这是完整的类:
这是我在 Xamarin.Forms 应用程序中调用该方法的方式:
其中 pickerDOB 是我表单上的日期选择器。这使得从任何地方调用验证方法并验证字符串或 DateTime 对象变得很容易。
I made a Validate class where I can validate data. In my class I have 2 methods for validating date of birth: 1 that takes a string parameter and the other takes a date parameter.
Here is the basic method:
Here is the full class:
Here is how I'm calling the method in my Xamarin.Forms app:
Where pickerDOB is a date picker on my form. This makes it easy to call the validation methods from anywhere and validate a string or DateTime object.