我正在尝试使用 DNN 7 服务框架创建用户。我从我的自定义注册模块中获取了我的工作代码,并修改为在 DNN webapi 函数中工作。
当我在下面的代码中调用 UserController.CreateUser 时,我收到一个
"\"There was an error generating the XML document.\""
例外。我的用户进入了 aspnet_Users 表和 DNN 用户表,但没有进入 DNN 用户门户表。任何想法,将不胜感激。
private void CreateUser()
{
//Update DisplayName to conform to Format
UpdateDisplayName();
User.Membership.Approved = PortalSettings.UserRegistration == (int)Globals.PortalRegistrationType.PublicRegistration;
var user = User;
CreateStatus = UserController.CreateUser(ref user);