Ejemplo n.º 1
0
 private void btnOK_Click(object sender, EventArgs e)
 {
     StudentBLL bstudent = new StudentBLL();
     if(dsStudent==new DataSet())
         MessageBox.Show("û������");
     try
     {
         if (bstudent.BatchAdd(dsStudent))
             MessageBox.Show("��ӳɹ�");
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }