ASP.NET 应用程序是否可以访问标准 ASP.NET UserId guid 而无需访问父应用程序提供程序?

发布于 2024-07-24 07:18:10 字数 319 浏览 3 评论 0原文

我编写了一个应用程序,该应用程序驻留在父应用程序或根应用程序的子目录中。

根应用程序使用自定义成员资格提供程序,但它的所有代码都位于 App_Code 目录中,并且深入编译到 ASP.NET 的临时文件中。

因此,它抱怨说,当我这样做时,它缺少对提供程序的引用:

Membership.GetUser().ProviderUserKey

我需要获取 UserId guid 以便将其推入某个数据库表中进行跟踪。 有没有其他方法可以从子应用程序获取此密钥? 或者有没有办法让子应用程序从父引用目录加载 DLL?

I have written a application which resides in a subdirectory of the parent, or root application.

The root application uses a custom membership provider, but all the code for it is in the App_Code directory, and it's compiled deep into the Temp files for ASP.NET.

Therefore, it complains that it's missing a reference to the provider when I do:

Membership.GetUser().ProviderUserKey

I need to get the UserId guid for shoving into some database table for tracking. Is there any other way to get at this key from a child application? Or is there a way to make a child application load DLLs from the parents reference directories?

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

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

发布评论

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

评论(1

眸中客 2024-07-31 07:18:10

一种方法是将自定义成员资格提供程序移至单独的类库 (DLL) 项目中。 然后,您将能够从根网站和子网站访问它。

One approach is moving your custom membership provider into separate class library (DLL) project. Then, you'll be able to access it both from the root and child websites.

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