0

MembershipDataContextのコードを使用して、Webフォームコードビハインドのaspnet_userテーブルのユーザー名を変更しています。ただし、MembershipDataContext名前空間が見つからなかったため、機能していません。Googleで検索しましたが、結果はありません。

ありがとう

アップデート:

public bool ChangeUserName(Guid userId, string newUserName)
{
    bool success = false;
    newUserName = newUserName.Trim();

    // Make sure there is no user with the new username
    if (Membership.GetUser(newUserName) == null)
    {
        MembershipUser u = Membership.GetUser(userId);
        string oldUsername = u.UserName;
        // get current application

        MembershipDataContext context = new MembershipDataContext ();
        aspnet_User userToChange = (from user in context.aspnet_Users
                                    where user.UserId == userId
                                    select user).FirstOrDefault();

        if (userToChange != null)
        {
            userToChange.UserName = newUserName;
            userToChange.LoweredUserName = newUserName.ToLower();

            context.SubmitChanges();

            // ASP.NET Issues a cookie with the user name. 
            // When a request is made with the specified cookie, 
            // ASP.NET creates a row in aspnet_users table.
            // To prevent this sign out the user and then sign it in

            string cookieName = FormsAuthentication.FormsCookieName;
            HttpCookie authCookie = 
              HttpContext.Current.Request.Cookies[cookieName];

            FormsAuthenticationTicket authTicket = null;

            try
            {
                authTicket = 
                    FormsAuthentication.Decrypt(authCookie.Value);

                FormsIdentity formsIdentity = 
                    new FormsIdentity(
                        new FormsAuthenticationTicket(
                            authTicket.Version, 
                            newUserName, 
                            authTicket.IssueDate, 
                            authTicket.Expiration, 
                            authTicket.IsPersistent, 
                            authTicket.UserData));

                string y = HttpContext.Current.User.Identity.Name;
                string[] roles = 
                    authTicket.UserData.Split(new char[] { '|' });
                System.Security.Principal.GenericPrincipal genericPrincipal = 
                    new System.Security.Principal.GenericPrincipal(
                                                        formsIdentity, 
                                                        roles);

                HttpContext.Current.User = genericPrincipal;
            }
            catch (ArgumentException ex)
            {
                // Handle exceptions
            }
            catch( NullReferenceException ex)
            {
                // Handle exceptions
            }

            FormsAuthentication.SignOut();
            HttpContext.Current.Session.Abandon();
            FormsAuthentication.SetAuthCookie(newUserName, false);
            success = true;
        }
    }

    return success;
}
4

2 に答える 2

2

参照する質問のコードは、という名前のLinq to SQLエンティティデータコンテキストを定義しますMembershipDataContext(これにより、の定義になりますDataContext)。。という名前の組み込み型(私が認識している、または見つけることができる)はありませんMembershipDataContext

これは同じことを行うプロジェクトの別の例です(dbml定義が含まれています)。

于 2012-04-17T16:10:18.337 に答える
0

データコンテキストは通常​​、linqを指します。Linqを使用していますか?その場合、一部はDBMLファイルからカスタム生成されたクラスでDataContextあるため、実際のクラスです。Member

これがお役に立てば幸いです。

于 2012-04-17T15:50:03.243 に答える