ASP.NET MembershipProvider applicationName 属性:它的作用是什么?
这是我第一次在这里提问,我希望得到帮助,同时也帮助你=)
我的问题很简单:
ASP.NET 中的 Membership Provider 表中的 applicationName 属性有什么意义?
我正在考虑实现我自己的会员提供商,但删除了该属性。难道是有什么问题吗?
提前致谢
Its my first time asking here, i hope get help, and meanwhile, help you ppl too =)
My question is very simple:
What is the point of the applicationName attribute in the Membership Provider tables in ASP.NET?
I was thinking of implementing my own membership provider, but taking that attribute out. Is there anything wrong with it?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您在同一数据库中存储多个应用程序的成员资格数据时,将使用此属性。例如,如果您有 2 个应用程序 Foo 和 Bar,则两个应用程序中可能有一个用户“John Doe”,但由于它们具有不同的应用程序名称,因此它们不会被视为同一用户
This attribute is used when you store membership data for multiple applications in the same database. For instance, if you have 2 applications Foo and Bar, you could have a user "John Doe" in both applications, but since they would have different application names, they wouldn't be considered as the same user