private void TestimonialBind() { try { ds = objInteraction.TestimonialSelectAll(); if (ds.Tables.Count > 0) { if (ds.Tables[0].Rows.Count > 0) { Testimonial.DataSource = ds.Tables[0]; Testimonial.DataBind(); } else { Testimonial.DataSource = null; Testimonial.DataBind(); } } else { Testimonial.DataSource = null; Testimonial.DataBind(); } } catch (Exception ex) { } }