What solutions are available to access Profile information since Web Applications do not expose ProfileCommon class like Web Site projects do.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Whilst possibly not the best option (but like you didn't find an obvious other option - it doesn't help that I'm also using a custom profile object), I've used the following:

ProfileBase pb = ProfileBase.Create(Page.User.Identity.Name);
m_PreferredName = pb.GetPropertyValue("WebName") as string;

More details, including examples of getting it into a custom type can be found in the Create Method documentation

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.