什么更好?使用还是不使用asp.net的Provider?
什么最佳实践? 如果我不使用提供程序,我将需要制作会话、角色、我的表和其他表......
如果提供程序更好,我如何构建与另一个表(外键)连接的自定义寄存器?我怎样才能让当前用户注册(使用sessionid?)
谢谢。
what best practice?
If i will not use the provider I will need to make table of Session, roles, my tables and other....
if the provider better, how can I build custom register with connection to another tables(foreign keys)? how can i get the current user in registration(with sessionid?)
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于您的要求。
以下文章可能会有所帮助:
会员简介
如何:在 ASP.NET 2.0 中使用成员身份
MembershipProvider 类
[我如何:]创建自定义会员提供商?(视频)
It depends on your requirements.
The following articles could be helpfull:
Introduction to Membership
How To: Use Membership in ASP.NET 2.0
MembershipProvider Class
[How Do I:] Create a Custom Membership Provider? (Video)
为什么要重新发明轮子?最佳实践是使用提供程序模型,如果您有任何特殊要求,请创建您自己的自定义会员资格提供程序(Akram 已发布有关如何执行此操作的链接)。
如果您使用的是 Windows 窗体,那么有很多示例说明如何通过成员资格提供程序使用成员资格控件,从而节省您大量时间。
Why reinvent he wheel? Best practice would be to use the provider model and if if you have any requirements out of the ordinary create your own custom membership provider (Akram has posted a link on how to do this).
If you are using windows forms there are a lot of examples out there of how to use the membership controls with the membership provider saving you a lot of time.