除了 Silverlight AspDotNetMembershipProvider 之外的其他选择
我正在使用 silverlight 4 进行咨询预订系统。我想知道的是,在我的应用程序中需要多种用户注册和登录。管理员具有不同格式的管理员 ID,讲师具有不同格式的讲师 ID。我正在尝试使用 silverlight 来实现角色和身份验证商家。我认为可能是因为 silverlight 会员资格可以使用 asp.netmembershipprover 轻松完成,我找不到任何资源来编辑它的默认表单或为我的应用程序定制会员商家。我想知道您是否知道有关如何实现此目的的任何文章或资源,或者您可以向我建议的任何想法?谢谢
我找到的资源: http://www.silverlight. net/learn/graphics/file-and-local-data/isolated-storage-(silverlight-quickstart) 我正在考虑使用独立存储来存储登录的用户布尔值,但听起来不太安全
http://msdn.microsoft.com/en-us/library/ee942451(v=vs.91).aspx 资源提到使用默认的 ASP.NET 成员身份,但没有评论如何编辑默认集。
i'm doing with silverlight 4 for consultation booking system. what i wondering is, in my application required multiple kind of user register and login. admin having different format of admin ID, lecturer having different format of lecturer ID. i'm trying to implement with silverlight for role and authentication merchant. i think might because of silverlight membership can be done easily with asp.netmembershipprover, i could not find any resource to edit the default form for it or custom made the membership merchant for my application. may i know is there any article or resource you know on how to implement this, or any idea you can suggest to me ?? Thank you
Resources i found:
http://www.silverlight.net/learn/graphics/file-and-local-data/isolated-storage-(silverlight-quickstart)
i thinking of using the isolated storage to store the user logged in boolean but sound like not so secure
http://msdn.microsoft.com/en-us/library/ee942451(v=vs.91).aspx
the resources mention of using the default asp.net membership but no comment on how to edit the default set.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用默认的 MembershipProvider 来管理普通用户例如用户名,密码,安全问题,登录名等信息。然后您创建额外的表来存储您自己的信息,当然您需要创建Page来自己管理这些数据。
You can use default MembershipProvider to manage general user information such as username, password, security question, login etc. Then you create additional table to store your own information, of course you need to create Page to manage these data by yourself.