我正在开发一个使用内置安全类来创建新用户的Web应用程序
newuser = MembershipUser.Create(相关参数)
这一切都很好
然后它发出一个Profile.GetProfile(newuser.UserName)
钻到了一个
System.Activator.CreateInstance(Type type,Boolean nonPublic)
扔了一个
类型为' System.Web.HttpUnhandledException'被扔了。 ---> System.ArgumentNullException:值不能为null。
参数名称:类型
它在开发中工作正常(Visual Studio 2015社区)
当前站点是在较旧的机器上开发的,可能是Visual Studio 2010
工作得很好
为什么我会收到这些错误 - 我该如何解决?