If you create a new ASP.NET MVC 2 Web Application and run it, you can register new users and logon. But I can not find where does those account data are put. Database? Local files? Or session???
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In your App_Data folder, if you click “Show all files”, you’ll see a database called ASPNETDB.MDF. This is where the user login data is stored. (Double click it to open it in server explorer and you’ll see a table called “aspnet_Users”)
The file is referenced by the web.config file in you project root – there’s a connection string called “ApplicationServices” that points to the database file directly.