使用会员资格asp.net的在线用户列表

时间:2013-01-08 12:08:45

标签: asp.net asp.net-membership

我希望在我的网站上有一个包含在线用户的列表,我在本地主机中使用此代码,但它没有向我显示任何用户。有谁能够帮我?我哪里弄错了?

  MembershipUserCollection users;


        if (!IsPostBack)
        {
            // Bind users to ListBox.
            List<MembershipUser> onlineUsers = new List<MembershipUser>();
            foreach (MembershipUser user in Membership.GetAllUsers())
            {

                if (user.IsOnline)
                {
                    onlineUsers.Add(user);

                }

            }
            ListBox1.DataSource = users;
            ListBox1.DataBind();

1 个答案:

答案 0 :(得分:1)

尝试更改此行:

ListBox1.DataSource = users;

对此:

ListBox1.DataSource = onlineUsers;

另外,不要忘记在ListBox1上设置DataKeyField和DataValueField属性。