Where is the account information of the new asp.net mvc web application stored?

If you create a new ASP.NET MVC 2 web application and run it, you can register new users and log in. But I can not find where the account information is stored. Database? Local files? Or a session ???

+3
source share
1 answer

In the App_Data folder, if you click Show All Files, you will see a database called ASPNETDB.MDF. This is where the user login information is stored. (Double-click it to open it in the server explorer, and you will see a table called "aspnet_Users")

web.config - , "ApplicationServices", .

+2

Source: https://habr.com/ru/post/1754949/


All Articles