vote up 0 vote down star

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.

flag

2 Answers

vote up 3 vote down check

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.

link|flag
How can I use sql 2000 for membership? – JMSA Aug 17 at 4:30
google the aspnet_regsql.exe command. It is used to create all the tables you need. Here is a pretty good walkthrough for using it with sql 2000. weblogs.asp.net/scottgu/archive/… – Joshua Hudson Aug 17 at 4:33
Where can I find the window used in Step 3...'new ASP.NET Admin MMC Snap-in now provides a GUI based way...'? – JMSA Aug 17 at 4:50
Ahh yes, that would be use if you were using IIS to host your pages. When you click on the virtual directory for your site in IIS there is a new ASP.net page. Since i'm assuming you are just using the built in visual studio host (You click run or debug and the page just opens), you can just edit the web.config. – Joshua Hudson Aug 17 at 14:05
Correction: Not ASP.net page, I meant ASP.net tab. – Joshua Hudson Aug 17 at 14:05
vote up 0 vote down

In some tables.

Typically named:

  • aspnet_Membership
  • aspnet_Users
  • and friends
link|flag
How can I configure my Web project to use membership from sql 2000? – JMSA Aug 17 at 4:31
1  
Point the connection string to that database? No? – silky Aug 17 at 4:33
There is no ConnectionString in my Web.config file. But my application is working. How is it possible? – JMSA Aug 17 at 4:36
See the answer you've accepted for that. – silky Aug 17 at 4:37
OK I am accepting you. Now plz tell me. – JMSA Aug 17 at 4:40
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.