where the membership's data store?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi ,

I have created some users account by using web site Administration Tool,
just wonder that which table in SQl server store those data?

What i am trying to achieve is that the web application i am working on at
mement , will deploy to another server. so if the membership data are in my
local sql server, does it still work ?

Cheers

Nick
 
If it's in a local sql server, you'll just need to move the membership store
and settings into a database on the destination server then point the
connectionstring there. You can do that even while working locally by
publishing the database but not the site, then just change the connection
string in your local version to point to the new db and see what happens.
Usually, the membership store is a SQL Server Express database in a folder
in the web site. You'll probably want to import it into a regular SQL Server
database though as SQL Server Express isn't supported by most hosts.
 
Back
Top