What if you're tables aren't named 'dbo.aspnet_xxxx'? i.e. they are named
'sqlusername.aspnet_xxxx'?
The configuration tool seems to use the 'dbo.aspnet_xxxx' tables even
though
the app uses the 'sqlusername.aspnet_xxxx' tables. All these tables are
in
the same database.
message You can point the asp.net membership to a different database in the
web.config file:
<connectionStrings>
<remove name="LocalSqlServer"/>
<add name="LocalSqlServer" connectionString="..."/>
</connectionStrings>
There is a command in the VS command prompt that will create the
membership provider objects in the database you specify.
Does it help you? I am not sure I understand your dbo. issue.
--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
Is there any way that you can point the configuration tool to look at
asp.net membership sql tables that don't have the default 'dbo.' at
the
start ?
Thanks
JJ