两个应用程序的成员表
我有一个使用表单身份验证、asp.net 成员资格提供程序 (ASP.NET 2.0) 的 asp.net 应用程序。
现在我正在创建另一个应用程序,它将使用相同的数据库登录该应用程序(ASP.NET 4.0)。
我怎样才能以最简单的方式做到这一点?
I have an asp.net application which is using form authentication, asp.net membership provider (ASP.NET 2.0).
Now I am creating another application which will use the same database to login into the application (ASP.NET 4.0).
how can I do it in simplest way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在两个应用程序上使用相同的提供程序。只需复制<会员资格>即可和相应的从第一个应用程序到第二个应用程序的 web.config 文件的部分。
You can use same provider on both applications. Simply copy <membership> and corresponding <connectionString> sections from first to second application's web.config file.