在控制台应用程序中使用 ASP.NET 成员资格提供程序

发布于 2024-12-17 17:09:25 字数 252 浏览 0 评论 0原文

我正在创建一个控制台应用程序,它将自动将用户创建到 Web 应用程序的数据库中,该应用程序是在 mvc 中构建的,并使用内置的成员资格提供程序和角色进行表单身份验证。

如何在控制台应用程序中使用 AccountMembershipServiceMembershipCreateStatus 类???我已将程序集和引用添加到 System.Web 和 System.Web.Mvc 以及安全性等,但无法让它识别这些类。

I am creating a console application that will automatically create users into a database of a web application that is built in mvc and uses the built in membership provider and roles for forms authentication.

How can I use the AccountMembershipService and MembershipCreateStatus classes from that in a console application??? I've added assemblies and refrences to System.Web and System.Web.Mvc and security etc but cannot get it to recognise those classes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

々眼睛长脚气 2024-12-24 17:09:25

将相关元素从 Web 项目 web.config 复制到 winforms app.config 中。

System.Web.Mvc 不是必需的,您还必须在项目设置下从 Net 4 Client Profile 更改为 .NET 4

Copy the relevant elements from your web projects web.config into the winforms app.config.

System.Web.Mvc is not required, and you'll also have to change from Net 4 Client Profile to .NET 4 under project settings.

临走之时 2024-12-24 17:09:25

使用 MS 的指南。如果您使用多个提供程序,请务必将该属性放置在 app.config 的部分中,否则您可能会得到其他内容作为默认提供程序,并且提供程序程序集也会出现奇怪的异常:)。

Use this guide from MS. Be sure to place the attribute in section in app.config if you use multiple providers otherwise you may get something else as default provider and strange exceptions for provider assemblies too :).

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