我目前正在做一个银行项目,我可以选择我要查看的交易历史月份(例如:当月,当月n最近1个月)现在,我只设法检索我使用的所有交易历史网格视图。我是否知道如何根据所选的单选按钮查看不同时期的交易?我目前正在使用asp.net n C#
myConnection.ConnectionString = strConnectionString;
SqlCommand cmd = new SqlCommand("SELECT thDate, thType, thAmountIn, thAmountOut from [Transaction]", myConnection);
myConnection.Open();
SqlDataReader reader1 = cmd.ExecuteReader();
GridView1.DataSource = reader1;
GridView1.DataBind();
答案 0 :(得分:-1)
对于您的SQL命令,您可以尝试:
SqlCommand cmd = new SqlCommand("SELECT thDate, thType, thAmountIn, thAmountOut from [Transaction] where thDate=" + RadioButtonList1.Text + ", myConnection);
其中RadioButtonList1
被RadioButtonList的名称替换。这应该将所选单选按钮的值放入SQL语句中。