I've made a Umbraco site, and ive got some members that i need to display information about in a usercontrol(ascx) page.
But the only thing i can find is the old umbraco api, with the m.GetProperty();
method like:
foreach (Member m in Member.GetAll) {
m.getProperty("danceStyles");
}
But visual studio says that Member
is obsolete and i should use Membership
instead, but i dont know how i can get generic properties from a member through that.
Only thing i can get is Username
, Email
and Password
, and not properties i define in umbraco...
Member
class that was obsolete so didn't even think of using that! – Burra