我想根据选择的单选按钮在网格视图中显示数据库值。我目前正在使用 RadioButtonList,我应该根据他们在单选按钮中选择的交易日期显示某些交易。例如,如果他们选择查看过去 1 个月的交易,我的 gridview 应该只显示过去一个月的交易。我目前正在使用 C#。
日期根据系统日期检索,并在进行交易时记录。我可以知道如何使用 gridview 将无线电事务与数据库链接吗?
这是我对 gridview 的编码。
myConnection.ConnectionString = strConnectionString;
SqlCommand cmd = new SqlCommand("SELECT thDate, thType, thAmountIn, thAmountOut from [Transaction] ORDER BY thDate, thType, thAmountIn, thAmountOut DESC", myConnection);
myConnection.Open();
SqlDataReader reader1 = cmd.ExecuteReader();
GridView1.DataSource = reader1;
GridView1.DataBind();