private void BindRepeaterJobPostLooking()
 {
     try
     {
         DataSet dsJobPostLooking = new DataSet();
         CurrentDesiredJobBAL currentDesiredJobBAL = new CurrentDesiredJobBAL();
         dsJobPostLooking = currentDesiredJobBAL.ViewJobPostLookingBAL(candidateId);
         if (dsJobPostLooking != null)
         {
             rptrJobPostLookinFor.DataSource = dsJobPostLooking;
              rptrJobPostLookinFor.DataBind();
         }
     }
     catch (Exception)
     {
         //  throw;
     }
 }