} }); return userProfile; }
4.在页面或者webpart调用该方法
protected void Page_Load(object sender, EventArgs e) { UserProfile upf = GetUserProfileByLoginName(System.Web.HttpContext.Current.User.Identity.Name.ToString()); string PictureUrl=""; if (upf[PropertyConstants.PictureUrl].Value != null) { PictureUrl = upf[PropertyConstants.PictureUrl].Value.ToString(); } else { PictureUrl = "/_layouts/images/person.gif"; } }毕业论文
其中PropertyConstants里面有很多UserProfile字段属性,如何通过这些属性获取对应的字段值,就是使用upf[PropertyConstants.PictureUrl].Value这样的方法。 上一页 [1] [2]
|