需要比较日期时间选择器中的sql数据库单元格值(日期)

时间:2014-10-15 05:38:22

标签: c# asp.net

我想比较(之前或之后)包含日期(以dd / MM / yyyy格式)的数据库单元格值与ASP.net中DateTime Picker中的日期。

任何人都可以帮助我吗?

string str2 = "select ITEM,INSTALLMENT,AMOUNT from Class_Fee where CLASS='" + classdrop.SelectedItem + "' and S_DATE>'" + feedate .SelectedDate   +"' ";

1 个答案:

答案 0 :(得分:1)

使用for DateTime for for循环从数据库中提取dataRow1值,使用ToString()将获得的结果转换为字符串,然后使用以下内容:DateTime dateTime = DateTime.ParseExact(dateString, "dd/MM/yyyy", 0);然后对其进行比较使用ASP.net页面的值