.net 会员提供商以编程方式创建应用程序

发布于 2024-10-09 08:01:58 字数 75 浏览 2 评论 0原文

我看到存储过程“aspnet_Applications_CreateApplications” 什么 C# 方法允许我以编程方式运行它?

I see the stored procedure "aspnet_Applications_CreateApplications"
What C# method would allow me to run this programmatically?

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

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

发布评论

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

评论(3

纵山崖 2024-10-16 08:01:58

过程 aspnet_Applications_CreateApplications 由 ASP.Net 中的多个 SQL 提供程序使用,例如 Membership、Role 和 Personalization 提供程序。但该过程实际上并不是通过 C# 代码调用的。相反,该过程由其他过程调用。例如:

在 Sql Membership Provider 中,当您调用 CreateUser 方法时:

  1. 该方法调用 aspnet_Membership_CreateUser 过程
  2. 上述程序然后调用 aspnet_Applications_CreateApplications 过程

因此,您必须编写您自己的代码来连接到数据库并调用此过程。

The procedure aspnet_Applications_CreateApplications is used by several of the sql providers in ASP.Net, such as the Membership, Role, and Personalization providers. But the procedure is not actually called through C# code. Instead this procedure is called by other procedures. For example:

In the Sql Membership Provider, when you call the CreateUser method:

  1. The method calls the aspnet_Membership_CreateUser procedure
  2. The above rcedure then calls the aspnet_Applications_CreateApplications procedure

Thus, you will have to write your own code to connect to the database and call this procedure.

无风消散 2024-10-16 08:01:58

Look at the SqlCommand class.

清醇 2024-10-16 08:01:58

AFAIC,ASP.NET 没有通过其成员库提供此功能的直接接口。

如果没有使用 ADO.NET 直接调用该过程,我不确定如何使用此功能。

你能解释一下你想做什么吗?

AFAIC, the ASP.NET provide no direct interface to this functionality through it's membership library.

Short of using ADO.NET to invoke the procedure directly, I'm not sure how you can use this functionality.

Can you explain what you're trying to do?

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