asp.net 中的自定义成员资格提供程序中的 createuser 成员需要自定义参数
我想自定义 createuser() 方法 Membership Provider 中的参数,
实际上,我有自己的数据存储,用于具有不同数据(包括用户名、密码)的用户。
但是,createuser() 不适合我的数据
任何人都可以帮助我!
I want to customize the parameter in createuser() method Membership Provider,
Actually, i have my own data store for users with different data including username,password.
but, the createuser() is not suite with my data
Any one can help me!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以做这样的事情。
You can do something like this.
只要您的提供程序是唯一正在使用的提供程序,您就根本不需要通过 ASP.NET 调用 CreateUser 方法。只需在任何地方创建该方法并正常调用即可。
As long as your provider is the only one in use, you don't need to call your CreateUser method through ASP.NET at all. Just create the method anywhere and call it normally.
迈克尔是对的,只是认为我会添加一些资源来帮助我完成这项任务:
来自 Microsoft 的优秀资源:
如何:实现自定义会员资格用户
上面链接中提到的另一个要记住的关键事情是,一旦完成创建自定义会员资格的工作user 和像 CreateUser 这样的方法的重载是您调用 Membership.CreateUser 的地方,您需要将其转换为自定义会员资格提供程序,例如:
Michael is correct just thought that I would add some resources that helped me to undertake this task:
Great resource from Microsoft:
How to: Implement a Custom Membership User
The other key thing to remember that is mentioned in the above link is that once you have done the work to create custom membership user and overloads for your methods like CreateUser is that where you call Membership.CreateUser you need to cast this to your custom membership provider like: