Example #1
0
 private void btnMark_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(txtSID.Text))
     {
        PopupMark(txtSID.Text);
     }
     else
     {
         StudentBLL bstudent = new StudentBLL();
         StudentInfo stuinfo = bstudent.GetStudentByName(txtName.Text);
         if (stuinfo != null && stuinfo.SID!=null)
             PopupMark(stuinfo.SID);
         else
             MessageBox.Show("û�����ѧ����", "����", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }