// ID CHECK
 public bool idCheck(string ID)
 {
     if (string.IsNullOrWhiteSpace(ID)) // 문자열이 공백이거나 NULL 일경우
     {
         print.idIsNullMessage();       // ERROR
         return(true);
     }
     else if (ID.Length < 8)              // ID가 너무 짧을경우
     {
         print.lengthNotSatisfyMessage(); // ERROR
         return(true);
     }
     else if (stringFirstLetterNumCheck(ID)) // ID 첫문자가 숫자일경우
     {
         print.idFirstLetterNoNumMessage();  // ERROR
         return(true);
     }
     else if (stringLength(ID, 14)) // 입력받은 문자의 길이가 14를 넘는조건
     {
         print.lengthOverMessage(); // ERROR
         return(true);
     }
     else if (stringCheck(ID, 1))          // 영어와 숫자만 들어가있는지 판별
     {
         print.onlyEnglishAndNumMessage(); // ERROR
         return(true);
     }
     else if (sd.selectForExists("member", "ID", ID)) // 중복일경우
     {
         print.duplicationIdMessage();
         return(true);
     }
     return(false);
 }