Salomé
Salomé

Reputation: 325

Where does Asp.Net UserAuthentication store users?

I was checking up to create a login system, now I found this standard login from Visual Studio. this link Authentication Methods I chose Individual User Accounts.

Now I'm curious to know where the data is saved.

I made a registration to the program afterwards I closed the app, hosted it again on my localhost and I still could log in with the same account.

I debugged the code, but it refers to the dll: Microsoft.AspNet.Identity.Core I checked my local database but there are no users. Removed the local database, still able to log in or register

Upvotes: 1

Views: 64

Answers (2)

Gita Moresanu
Gita Moresanu

Reputation: 21

Check your app data folder. You might have a DB automatically there. If not, Click View->Server Explorer. You might see something useful there.

Upvotes: 2

Salomé
Salomé

Reputation: 325

I got the connectionString in de webconfig file! I managed to change the string to my own database and the program does the rest!

Upvotes: 0

Related Questions