本文介绍了如何进行日期比较的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想检查大于当前日期的日期的有效性.我正在使用包含日期值的文本框.当我点击提交按钮时,它应该检查输入的日期是否大于当前日期,这是代码:
Hi,
I want to check the validation for the date that is greater than the current date. I am using the text box that contains the date values. When I click the submit button it should check the validation whether the entered date is greater than the current date or not.Here is the code:
DateTime EnquiryDate= UserUtil.ConvertDate(txtEnquiryDate.Text);//Here I am getting the error string cannot be converted to dateTime.
if(EnquiryDateEnquiryDate>=DateTime.Now)
txtEnquirydate包含:2011年4月8日.
我正在使用转换日期功能,并将该日期转换为MM/DD/YYYY格式.
在此先感谢
Here the txtEnquirydate contains:04/08/2011.
I am using the convert date function and converting that date to MM/DD/YYYY format.
Thanks in advance
推荐答案
这篇关于如何进行日期比较的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!