Have a gridview that lists users who are locked out of the system. Admin staff can go on to this unlockuser page where the gridview will be displayed with the users various details, theres an unlock button on every row for each user. Just wondering what way to write the back end code for the gridview row command? So far I have
MembershipUser usr = Membership.GetUser();
usr.UnlockUser();
How do I get the user id into this? Do I need to declare it as a variable somewhere in the code behind?