我需要根据下拉列表显示gridview:LatestTransactionFirst,EarlyTransactionFirst。所以基本上它是基于gridview中的日期的desc或asc。我可以知道我该怎么做吗?
这是我的 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();