除了 Silverlight AspDotNetMembershipProvider 之外的其他选择

发布于 2024-12-12 20:03:00 字数 750 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

埋葬我深情 2024-12-19 20:03:00

您可以使用默认的 MembershipProvider 来管理普通用户例如用户名,密码,安全问题,登录名等信息。然后您创建额外的表来存储您自己的信息,当然您需要创建Page来自己管理这些数据。

Table: aspnet_users
       UserId
       UserName
       ...

Table: YourCustomData
       UserId
       AdminId
       AdminText
       ...

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.

Table: aspnet_users
       UserId
       UserName
       ...

Table: YourCustomData
       UserId
       AdminId
       AdminText
       ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文