예제 #1
0
 public void LodeRoll()
 {
     try
     {
         var subject = _infoManager.GetStudentId();
         dropdownRoll.DataSource     = subject;
         dropdownRoll.DataTextField  = "Roll";
         dropdownRoll.DataValueField = "Id";
         dropdownRoll.DataBind();
         dropdownRoll.SelectedIndex = -1;
     }
     catch (Exception e)
     {
         lblMessege.Text = e.Message;
     }
 }