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...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
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...