private void FillRepeatorCalendar() { DataTable dtCalendar = new DataTable(); ProductBAL balProduct = new ProductBAL(); dtCalendar = balProduct.SelectAllCalendar(); if (dtCalendar != null && dtCalendar.Rows.Count > 0) { rptCalendar.DataSource = dtCalendar; rptCalendar.DataBind(); } }