Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I have usercontrol with list of members in admin panel, how I can do link to the member?
Hi Anton,
The member's login uniquely identifies the member, so I would use that.
If you put a linkbutton in your usercontrol and pass in the member login you can use that in your code behind to retrieve the member.
// where login is the member's unique identifer, ie. ian.robinsonSystem.Web.Security.MembershipUser m = Membership.GetUser(login);
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Link to member by API
I have usercontrol with list of members in admin panel, how I can do link to the member?
Hi Anton,
The member's login uniquely identifies the member, so I would use that.
If you put a linkbutton in your usercontrol and pass in the member login you can use that in your code behind to retrieve the member.
// where login is the member's unique identifer, ie. ian.robinson
System.Web.Security.MembershipUser m = Membership.GetUser(login);
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.