Ejemplo n.º 1
0
 protected bool checkExistUsername(string username)
 {
     ulBus = new UserLoginBUS();
     DataTable tblUser = ulBus.GetByUsername(username);
     if (tblUser.Rows.Count > 0)
     {
         return true;
     }
     return false;
 }