ASP.Net 验证到达和到达之间的天数出发日期
我有一个要求,需要检查两个日期选择器之间输入的天数之间的验证至日期]。我的要求是不能超过100天。
有没有办法可以使用 ASP.NET 提供的验证器。我可以继续为它编写自定义验证器(客户端和服务器端),但想知道使用 CompareValidator 或 RangeValidator 是否可行?
I have a requirement by which need to check validation between number of days entered between two date selectors [From & To Dates]. My requirement is that it should not exceed 100 days.
Is there a way I can do with asp.net provided validators. I can go ahead and write customvalidator for it (both client and server side), but wondering if that is doable using CompareValidator or RangeValidator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用自定义验证器:
在 javascript 中调用以下函数:
希望这能为您完成...
Try using custom validator:
Call the following function in javascript:
Hope this will do it for you...
如果您正在寻找类似的答案,下面的函数将完成工作
从类似的 帖子
Below function will do the work if you are looking after similar kinda answer
Got help from somewhat similar post