ASP.NET 应用程序是否可以访问标准 ASP.NET UserId guid 而无需访问父应用程序提供程序?
我编写了一个应用程序,该应用程序驻留在父应用程序或根应用程序的子目录中。
根应用程序使用自定义成员资格提供程序,但它的所有代码都位于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是将自定义成员资格提供程序移至单独的类库 (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.