我在我的asp.net网站上使用WebSecurity,我在_AppStart.cshtml中编写代码
@{
WebSecurity.InitializeDatabaseConnection("Membership","UserProfile", "UserId", "UserName", true);
}
我正通过以下代码创建帐户
if(!WebSecurity.UserExists(username))
{
WebSecurity.CreateUserAndAccount(username,password);
}
但是用户个人资料没有创建。 Plz帮助我。