如何配置会员提供程序以在我自己的数据库中插入数据
如何配置会员提供程序以在我自己的数据库中插入数据
How can I configure membership provider to insert data on my own database
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何配置会员提供程序以在我自己的数据库中插入数据
How can I configure membership provider to insert data on my own database
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
编写自定义成员资格提供程序以使用自定义数据库(如果您想使用完全不同的数据库架构)或按照此处的步骤操作:
如何更改我的 ASP.NET 会员数据库
Write a custom Membership Provider to use your custom database (if you want to use a completely different database schema) or follow the steps here:
How Do I Change My ASP.NET Membership Database
您可以创建自定义 MembershipProvider 来处理自定义身份验证系统。你必须实现一堆方法。这是一个示例,
最后您必须将应用程序设置为使用您的会员提供商 ->在 web.config 中
You can create a custom MembershipProvider to deal with a custom authentication system. You have to implement a bunch of methods. Here is an example
finally you have to set your app to use your membership provider -> in the web.config