会员商店 VB.NET 帮助程序类
我需要在普通 winform 项目中使用标准 ASP.NET 成员数据库表,并且我不想添加 ASP.NET dll,因为我的应用程序必须使用 .NET 客户端框架运行,而不是完整的框架。
有人知道有一个帮助程序类可以链接到普通 VB 或 C# 代码中的 ASP.NET 表吗? 我的意思是使用相当于 CreateNewUser、CheckUserCredentials、isUserinRole、RoleList 等的函数...
I need to use the standard ASP.NET membership database tables in plain winform projects, and I DO NOT WANT to add the ASP.NET dll, because my app must run with .NET Client framework, and not full framework.
Does somebody knows of a helper class that links to ASP.NET tables in plain vanilla VB ot c# code?
I mean with functions equivalent to CreateNewUser, CheckUserCredentials, isUserinRole, RoleList etc...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
成员资格提供程序是 ASP.NET 的一部分,如果您想使用它,则必须链接到该 DLL。
如果不能,您将必须自己构建它或使用第三方实用程序来为您构建它。
The membership provider is part of ASP.NET, if you want to use it you'll have to link against that DLL.
If you can't, you'll have to build it yourself or use a third-party utility which does it for you.