private void GetParentsDetailsToHF(int admissionno)
        {
            Hashtable ht = new Hashtable();

            ht.Add("AdmissionNo", admissionno);

            DataTable dt = StudentProfileBLL.GetParentsDetailsToProfile(ht);

            if (dt.Rows.Count > 0)
            {
                // fathers`

                lblFname.Text          = dt.Rows[0]["Namefather"].ToString();
                lblFnationality.Text   = dt.Rows[0]["NationalityName"].ToString();
                lblFmaritalstatus.Text = dt.Rows[0]["ddlmaritalstatusf"].ToString();
                lblFeducation.Text     = dt.Rows[0]["Educationfather"].ToString();
                lblFocc.Text           = dt.Rows[0]["Occupationfather"].ToString();
                lblForg.Text           = dt.Rows[0]["Organizationfather"].ToString();
                lblFdesignation.Text   = dt.Rows[0]["Designationfather"].ToString();
                lblFyearofservice.Text = dt.Rows[0]["Yearofservicefather"].ToString();
                lblFOffAdd.Text        = dt.Rows[0]["Officeaddressfather"].ToString();
                lblFoffTelephone.Text  = dt.Rows[0]["OfficeTelephonefather"].ToString();

                lblFresidence.Text = dt.Rows[0]["Residentialaddressfather"].ToString();
                lblFPreAdd.Text    = dt.Rows[0]["Presentaddressfather"].ToString();
                lblFPerAdd.Text    = dt.Rows[0]["Permanentaddressfather"].ToString();
                lblFTelephone.Text = dt.Rows[0]["Telephonefather"].ToString();
                lblFMobile.Text    = dt.Rows[0]["Mobilefather"].ToString();
                lblFmail.Text      = dt.Rows[0]["Emailfather"].ToString();
                lblFresidence.Text = dt.Rows[0]["Residencewithfather"].ToString();



                //mother`s

                lblMName.Text          = dt.Rows[0]["Namemother"].ToString();
                lblMnationality.Text   = dt.Rows[0]["NationalityName"].ToString();
                lblMmaritalStatus.Text = dt.Rows[0]["ddlmaritalstatusf"].ToString();
                lblMeducation.Text     = dt.Rows[0]["Educationmother"].ToString();
                lblMocc.Text           = dt.Rows[0]["Occupationmother"].ToString();
                lblMOrg.Text           = dt.Rows[0]["Organizationmother"].ToString();
                lblMdesignation.Text   = dt.Rows[0]["Designationmother"].ToString();
                lblMYearofservice.Text = dt.Rows[0]["Yearofservicemother"].ToString();
                lblMoffAdd.Text        = dt.Rows[0]["Officeaddressmother"].ToString();
                lblMoffTel.Text        = dt.Rows[0]["Officetelephonemother"].ToString();

                lblMresidence.Text            = dt.Rows[0]["Residentialaddessmother"].ToString();
                lblMPreAdd.Text               = dt.Rows[0]["Presentaddressmother"].ToString();
                lblMPerAdd.Text               = dt.Rows[0]["Permanentaddressmother"].ToString();
                lblMTelephone.Text            = dt.Rows[0]["Telephonemother"].ToString();
                lblMMobile.Text               = dt.Rows[0]["Mobilemother"].ToString();
                lblMemail.Text                = dt.Rows[0]["Emailmother"].ToString();
                lblMresidencewithstudent.Text = dt.Rows[0]["Residencewithmother"].ToString();
            }
        }