0

我目前正在做一个银行项目,我可以选择我想查看的交易历史月份(例如:当前月份,当前月份 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();
4

1 回答 1

-1

对于您的 SQL 命令,您可以尝试:

SqlCommand cmd = new SqlCommand("SELECT thDate, thType, thAmountIn, thAmountOut from [Transaction] where thDate=" + RadioButtonList1.Text + ", myConnection);

WhereRadioButtonList1替换为您的 RadioButtonList 的名称。这应该将所选单选按钮的值放入 SQL 语句中。

于 2012-07-15T12:33:45.743 回答