在我的申请中,授权用户将注册新客户并设置他们的用户名和密码等。客户不会自行注册。
我在创建新用户的类文件中有以下代码,它工作得很好。
public MembershipCreateStatus CreateUser(string userName, string password, string email, string employeeID)
{
if (String.IsNullOrEmpty(userName)) throw new ArgumentException("Value cannot be null or empty.", "userName");
if (String.IsNullOrEmpty(password)) throw new ArgumentException("Value cannot be null or empty.", "password");
if (String.IsNullOrEmpty(email)) throw new ArgumentException("Value cannot be null or empty.", "email");
MembershipCreateStatus status;
/// _membershipProvider.CreateUser("asdas","ds123BB", email, "asdasd", "asdasdad", true, null, out status);
_membershipProvider.CreateUser(userName, password, email, null, null, true, null, out status);
string answer = status.ToString();
return status;
}
但是,我还想在创建此用户时为配置文件设置employeeID属性。
在创建新用户时如何设置EmployeeID? 感谢