public string forgotPaasword()
 {
     try
     {
         if (!ObjDal.checkEmail(objBal))
         {
             lblError.Text = "Email Addres Not Found";
         }
         else
         {
             objBal.Password = ObjDal.GetPassword(objBal);
         }
         return(objBal.Password);
     }
     catch
     {
         throw;
     }
     finally{
     }
 }