What is default hash algorithm that ASP.NET membership uses?
What is default hash algorithm that ASP.NET membership uses? And how can I change it?
What is default hash algorithm that ASP.NET membership uses? And how can I change it?
I have two asp.net applications on one IIS server and I would like to use the same back end asp_security database and membership provider. I’ve read that all I have to do is reference the same application name in both web configs as I’m doing now, but I must be doing something wrong
I have some tables that have a uniqueidentifier UserID that relates to aspnet_Users.UserID. When the user submits some data for those tables, since the controller method has an [Authorize] I get a User object. I can get the username with User.Identity.Name, but how do I get the UserID to be able to establish (the ownership) relationship?
I saw many questions on SO with this error. But none were related to forms. I just hosted my application server after testing locally. I think it worked for a few mins but I’m not sure as I may have looked at the localhost tab for a moment. Then it stopped working. I may have changed something as I was making changes on server too.
Designing a new application in asp.net 4 I have to make a decision how to use a MS SQL Membership API along with my own data in the MS SQL data base. Firstly I need to store and access user profile data in more flexible manner then the Profile provider supports. Secondly I would like to link other user related information (e.g. Orders).
I am using the default sql membership provider with ASP.NET and I would like to provide a page to change the user’s username. I believe I am sure I could do this with a custom provider, but can this be done with the default provider?
Whats the best way to log out a user when a session ends or expires?
i have change the default Account Membership provider to set IsApproved to false.
Lets say that you have websites www.xyz.com and www.abc.com.
How can I access UserId in ASP.NET Membership without using Membership.GetUser(username) in ASP.NET Web Application Project?