0

我试图让所有用户使用我搜索属性的用户名。

MembershipUserCollection users = Membership.FindUsersByName(txtSearchName.Text + "%");
datalist1.DataSource = users;
datalist1.DataBind();

//In the datalist
<asp:Label ID="UserName" runat="server" Text='<%# Eval("Username") %>'></asp:Label>

上面的代码有效,我可以从数据库中输入任何用户名,它会显示出来。但我还需要我在 webconfig 中指定的所有配置文件属性,例如名字、姓氏等。

4

3 回答 3

0

我一直在业务逻辑层处理这个问题。您需要创建一个自定义类型来扩展您的配置文件属性并添加一个UserAccount属性:

    public static Profile GetProfile() {
        Profile profile = null;
        if (HttpContext.Current.User.Identity.IsAuthenticated) {
            var user = Membership.Provider.GetUser(HttpContext.Current.User.Identity.Name, false);
            if (user != null) {
                // an AD user who is already authed
                profile = ReferralsData.GetProfilesByProviderKey(user.UserName) ?? new Profile();
                profile.UserAccount = user;
            }
        }
        return profile;
    }
于 2012-08-21T12:08:20.497 回答
0
var profiles = ProfileManager.GetAllProfiles(ProfileAuthenticationOption.Authenticated)
datalist1.DataSource = profiles;
datalist1.DataBind();


<asp:Label ID="UserName" runat="server" Text='<%# Eval("UserName") %>'></asp:Label>
<asp:Label ID="FirstName" runat="server" Text='<%# Eval("FirstName") %>'></asp:Label>
<asp:Label ID="LastName" runat="server" Text='<%# Eval("LastName") %>'></asp:Label>
于 2012-08-21T11:59:57.893 回答
0

您可以通过配置文件提供程序类访问配置文件属性

var profile = ProfileBase.Create(userName);
var firstName = profile["FirstName"] as string;
var lastName = profile["LastName"] as string;
于 2012-08-21T12:00:29.867 回答