0

我在我的 asp.net 网站中使用 WebSecurity,我在 _AppStart.cshtml 中编写了一个代码

@{
    WebSecurity.InitializeDatabaseConnection("Membership","UserProfile", "UserId", "UserName", true);
}

我正在通过以下代码创建我的帐户

 if(!WebSecurity.UserExists(username))
            {
                WebSecurity.CreateUserAndAccount(username,password);

            }

但是用户配置文件没有创建。请帮助我。

4

1 回答 1

1

你不应该使用这个覆盖吗?因为第三个参数采用属性值列表,该列表将存储在用户配置文件功能中。

于 2012-12-28T19:11:56.197 回答