ASP .NET用户配置文件中的WebSecurity未创建

时间:2012-12-28 18:35:10

标签: c# asp.net security

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

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

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

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

            }

但是用户个人资料没有创建。 Plz帮助我。

1 个答案:

答案 0 :(得分:1)

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