我在 UI 中有这三列。在下拉列表中,我有一个AllRecords
和其他一些字段。我选择该AllRecords
字段并输入开始和结束日期的详细信息。
现在我写了一个查询来检索值。
当他选择时AllRecords
,根据开始和结束日期,它必须显示或从数据库表中检索数据。
我已经写了一个查询,如果用户会选择其他值,它看起来像这样,
DataTable dt = new DataTable();
string queryStr = "SELECT Day,Date,Name,Task,Hours from TaskManualDetails where Date between '"
+ DateTime.Parse(txtStartDate.Text).ToString("yyyy-MM-dd")
+ "' and '"
+ DateTime.Parse(txtEndDate.Text).ToString("yyyy-MM-dd")
+ "' and Name ='"
+ DropDownList1.Text.ToString()
+ "'";
SqlDataAdapter s1 = new SqlDataAdapter(queryStr, conn);
s1.Fill(dt);
现在的问题是我必须为AllRecords
.