Ejemplo n.º 1
0
 private void PopulateCourseByStudentID()
 {
     Course course = new Course();
     string id = lblID.Text.Trim();
     CourseGrid.DataSource = course.GetCourseByStudentOID(id);
     CourseGrid.DataBind();
 }