private void ViewDetails(string invoiceNo)
 {
     mpeDetails.Show();
     lblInvoiceNo.Text           = invoiceNo;
     gvOrderedDetails.DataSource = BllImportExcel.GetImportListByDate(4, int.Parse(ddlBranch.SelectedValue), ddlSeason.SelectedValue, invoiceNo, DateTime.Parse(ConvertNE.ConvertNToE(DateStringToInt.StringToInt(txtDate.Text))));
     gvOrderedDetails.DataBind();
 }
 public void FillGridView()
 {
     gvOrderList.DataSource = BllImportExcel.GetImportListByDate(3, int.Parse(ddlBranch.SelectedValue), ddlSeason.SelectedValue, "", DateTime.Parse(ConvertNE.ConvertNToE(DateStringToInt.StringToInt(txtDate.Text))));
     gvOrderList.DataBind();
 }