Reputation: 17388
When I use:
Membership.GetUser(User.Identity.Name)
does anyone know which table and field User.Identity.Name corresponds to when I use the 'standard asp.net membership provider tables' like these:
aspnet_Membership
aspnet_Users
Thanks.
Upvotes: 5
Views: 1006
Reputation: 14460
Its retrieves record from aspnet_Membership
table
Please read more about Stored procedures used by SqlMembershipProvider section under Membership Providers which describes which method access which table.
Upvotes: 3