根据Windows应用程序中现有的标准asp.net sql成员身份验证用户
我有一个 ASP.NET Web 应用程序,它使用标准 sql 会员资格提供程序。我有一个 Windows 应用程序与 Web 应用程序在同一台计算机上运行。
我想向我的 Windows 应用程序添加登录控件,并且希望该登录控件根据现有的 asp.net sql 会员系统验证用户凭据。
这可能吗?
谢谢...
I have a asp.net web application which uses standart sql membership provider. And I have a windows application that runs on the same machine with the web application.
I want to add a login control to my windows application and I want that login control to validate user credentials against existing asp.net sql membership system..
Is it possible?
Thank you...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您已将与安全相关的数据存储在会员数据库中。您可以使用此数据来验证 Windows 窗体用户身份,方法是执行一些查询,将提供的用户凭据与数据库中的凭据进行比较。
请参阅在 Windows 窗体应用程序中使用 ASP.NET 成员资格提供程序。
Well, you have the security related data stored in the membership database. You can use this data to authenticate the windows forms users by execute some queries that compare the provided user's credentials with those ones in the database.
Refer to Using the ASP.NET membership provider in a Windows forms application.