ASPNETDB membership security on remote DB.. Roles?

  • Thread starter Thread starter jobs
  • Start date Start date
J

jobs

Im keeping my aspnetdb on a remote server instead of the default local
sql express db on under my project. everything is working well and i
have the right settings under my web.config. I now added role security
and it insiste on creating a local db and adding it there..

any way around this?

thanks for any help or information.
 
First of all, you do not need to use "ASPNETDB" database to handle your
Membership, Roles, Profile. You can create the tables/view/sprocs in any
database with ASPNET_REGSQL or via built-in managment library methods.
You need to have a <Clear> or <Remove> directive in your Membership etc.
web.config nodes in order to remove the default providers before adding your
own.
-- Peter
Recursion: see Recursion
site: http://www.eggheadcafe.com
unBlog: http://petesbloggerama.blogspot.com
bogMetaFinder: http://www.blogmetafinder.com
 
Back
Top