Ι有一个页面可以返回gridview,其中包含来自特定日期和时间的数据(硬编码)
是否可以改变这一点,以便数据显示今天的统计数据?我也希望它在特定时间开始,然后在给定时间后重置,例如早上6点到下午2点 - 下午2点到晚上10点到晚上10点 - 早上6点。
public void Refreshdata(int selectedProduct)
{
BizManager biz = new BizManager();
GridView1.DataSource = biz.GetPacktstatisticsForShift(new DateTime(2016, 6, 10, 6, 0, 0)
, new DateTime(2016, 6, 10, 13, 59, 59)
, selectedProduct).DefaultView;
GridView1.DataBind();
public void Dropdownlist1_SelectedIndexChanged(object sender, EventArgs e)
{
int productId;
if(int.TryParse(DropDownList1.SelectedValue, out productId))
Refreshdata(productId);