public void BindDLDashboard()
 {
     DLDashboard.DataSource = SpecimanDetails.Get_Reports_SpecimenDashBoard("abc", "xxx").Tables[0];
     DLDashboard.DataBind();
     DLDashboard1.DataSource = SpecimanDetails.Get_Reports_SpecimenDashBoard("abc", "xxx").Tables[2];
     DLDashboard1.DataBind();
 }
Ejemplo n.º 2
0
 public void BindDLDashboard()
 {
     DS = new DataSet();
     DS = Idv.Chetana.BAL.Other.Dashboard.Get_Dasboard_ForOrderValuation(fdate, tdate, Convert.ToInt32(DDLSuperZone.SelectedValue), Convert.ToInt32(strFY));
     DLDashboard.DataSource = DS.Tables[3];
     DLDashboard.DataBind();
     lbltotalgross.Text = " Total Gross Amount " + String.Format("{0:0.00}", Convert.ToDecimal(DS.Tables[0].Rows[0]["TotalGrossAmount"].ToString()));
     lbltotalnet.Text   = " Total Net Amount " + String.Format("{0:0.00}", Convert.ToDecimal(DS.Tables[0].Rows[0]["TotalNetAmount"].ToString()));
     lblactulnet.Text   = " Actual Receivable " + String.Format("{0:0.00}", Convert.ToDecimal(DS.Tables[0].Rows[0]["actualnetamount"].ToString()));
 }
Ejemplo n.º 3
0
    public void BindDLDashboard()
    {
        //try
        {
            DLDashboard.DataSource = Idv.Chetana.BAL.Other.Dashboard.GetDashboard();
            DLDashboard.DataBind();
        }
        //catch (Exception ex)
        //{
        //    lblMsg.Visible = true;
        //    lblMsg.Text = ex.InnerException.ToString();

        //}
    }
Ejemplo n.º 4
0
 public void BindDLDashboard()
 {
     DLDashboard.DataSource = Idv.Chetana.BAL.Other.Dashboard.GetDashboard();
     DLDashboard.DataBind();
 }