protected void UpdateFeeDetailsOfStudent(object sender, EventArgs e)
        {
            if (Session[SessionVariables.UserIdInSession] != null)
            {
                PageDataService.UpdateScholarShipDetailsByScholarShipDetailsIdAdoNet(
                    Convert.ToInt32(hdnScholarShipDetailsId.Value), Convert.ToInt32(txtStudentScholarShip.Text.Trim()),
                    Convert.ToInt32(Session[SessionVariables.UserIdInSession].ToString()));

                lblUpdateStudentScholarShipDetails.Text = false.ToString(CultureInfo.InvariantCulture);
                lblAddScholarShipForStudents.Text       = false.ToString(CultureInfo.InvariantCulture);
                Response.Redirect(Request.RawUrl, false);
            }
        }