i know how to get userid for a current user MembershipUser currentUser = Membership.GetUser(); Guid currentUserId = (Guid)currentUser.ProviderUserKey; But for my application i need to get userid of user who are not loginned in also. Because i need to assign the userid to different table which i m using.
Thank you in Advance