Ejemplo n.º 1
0
 public static string GetUserName()
 {
     User _User= new User();
     string UserCode = GetUserCode();
     UserInfo info = _User.GetUserInfoByUserCode(UserCode);
     if (info != null)
         return info.UserName;
     return "";
 }