} //---------------------------------

        //#############################################END LINKBUTTON lnkEnroll EVENTS########################################################

        //###############################################LINKBUTTON lnkReaload EVENTS########################################################
        //event is raised when the link is clicked
        private void lnkRealoadSpecialClassClick(object sender, EventArgs e)
        {
            String msgConfirm = "Are you sure you want to reaload the student from the special class?";

            if (MessageBox.Show(msgConfirm, "Confirm Reaload", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
            {
                this.dgvEnrolled.DataSource  = _specialManager.RealoadSpecialClassLoad(_loadId);
                this.dgvWithdrawn.DataSource = _specialManager.GetEnrolledWithdrawnSpecialClassLoadTable(false);
            }
        }//----------------------------