public void BindCycleMainGrid() { iCycleCountClient cycle = new iCycleCountClient(); try { CustomProfile profile = CustomProfile.GetProfile(); grdcyclecount.DataSource = cycle.GetCycleCountMain(profile.DBConnection._constr); //GetCycleCountMain(profile.DBConnection._constr); grdcyclecount.DataBind(); } catch (System.Exception ex) { Login.Profile.ErrorHandling(ex, this, "Warehouse Master", "MainCustomerGridBind"); } finally { cycle.Close(); } }