user366312
user366312

Reputation: 17006

ASP.net - membership

I have created a user using the built-in CreateUserWizard - control.

I can now log-in using the built-in Login - control.

But where is the data stored in the database?

I am using SQL Server 2005 Express and I have also sql server 2000 running on my PC.

Upvotes: 0

Views: 138

Answers (2)

Joshua Hudson
Joshua Hudson

Reputation: 2217

Look in the app_data folder, which is a part of your project. There should be a database file in there. Unless you manually created the aspnetdb, using the aspnet_regsql.exe command, a database will be created for you in that folder.

Upvotes: 2

Noon Silk
Noon Silk

Reputation: 55172

In some tables.

Typically named:

  • aspnet_Membership
  • aspnet_Users
  • and friends

Upvotes: 0

Related Questions