我想将asp.net成员资格用户名传递给子程序,并为该用户检索名为 FullName 的配置文件属性,我该如何在vb.net中实现?
提前致谢。
答案 0 :(得分:0)
这是我的头脑,我的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
答案 1 :(得分:-1)
您需要为此扩展ASP.NET Membership API。
按照这篇文章查看:http://www.code-magazine.com/article.aspx?quickid=0703071