protected void BindGrid()
        {
            DataTable dt = GetSectionFieldName("SectionNamePhyExam", 0);

            RadGridSection.DataSource = dt;
            RadGridSection.DataBind();
        }
예제 #2
0
        protected void BindGrid()
        {
            DataTable dt = GetDataTable("SectionName");

            RadGridSection.DataSource = dt;
            RadGridSection.DataBind();
        }
예제 #3
0
        protected void BindGrid()
        {
            if (RadGridSection.Items.Count == 0)
            {
                DataTable dt = GetDataTable("SectionName");

                RadGridSection.DataSource = dt;
                RadGridSection.DataBind();
            }
        }