检索 asp.net 会员用户帐户的配置文件信息

发布于 2024-09-29 16:29:37 字数 106 浏览 2 评论 0原文

我想将 asp.net 会员用户名传递给子例程并检索该用户名为 FullName 的配置文件属性,我如何在 vb.net 中实现此目的?

提前致谢。

I want to pass an asp.net membership user name to a subroutine and retrieve the profile property named FullName for that user, how can i achive this in vb.net?

Thanks in advance.

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

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

发布评论

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

评论(2

笔落惊风雨 2024-10-06 16:29:37

这超出了我的想象,而且我的 vb.net 已经生锈了,所以请将其视为可以按原样运行的伪代码

Public Function GetProfileFullName(username as String) as String
   Dim profile as ProfileBase = ProfileBase.Create(username);
   Return profile.GetPropertyValue("FullName") as String;
End Function

this is off the top of my head and my vb.net is rusty so treat it like psuedo code that may run as-is

Public Function GetProfileFullName(username as String) as String
   Dim profile as ProfileBase = ProfileBase.Create(username);
   Return profile.GetPropertyValue("FullName") as String;
End Function
笙痞 2024-10-06 16:29:37

为此,您需要扩展 ASP.NET Membership API。

请按照本文查看操作方法:http://www.code-magazine.com/ Article.aspx?quickid=0703071

you need to extend the ASP.NET Membership API for this.

follow this article to see how: http://www.code-magazine.com/article.aspx?quickid=0703071

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