23-3-2010 7:26:52
Với người dùng thì nghiên cứu namespace này nhá
DotNetNuke.Entities.Users trong đó có các lớp làm việc thao tác với user đấy.
Ví dụ mình lấy ra username của người đang đăng nhập là:
DotNetNuke.Entities.Users.UserController uc = new DotNetNuke.Entities.Users.UserController();
string username = "";
if (HttpContext.Current.User.Identity.IsAuthenticated)
username = uc.GetUser(this.PortalId, UserInfo.UserID).Username;