private bool IfUserIDExists() { DataTable dt; dt = dalUser.userIDSearch(userID); if (dt.Rows.Count > 0) { return(true); } else { return(false); } }