G
Guest
I have a web project where I'm using VS2005 and I have installed Sql server
2005 developer edition. I've modified my webconfig file to point to my custom
provider:
<connectionStrings>
<add name="namegoeshere" connectionString="server=servername(or
localhost);database=dbname;uid=dbid;password=pass1;"
providerName="System.Data.SqlClient"/>
</connectionStrings>
<membership defaultProvider="CustomizedMembershipProvider">
<providers>
<add name="CustomizedMembershipProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="namegoeshere" />
</providers>
</membership>
what is weird is that I used the 'aspnet_regsql.exe' tool to create the
membership structure in my existing db. But I see an 'aspnetdb.mdb' file in
my App_Data directory. It it appears that that the 'AspNet Configuration
tool' is saving user data in two places???? The mdb and in my Sql DB??? I
noticed this when I attempted to add a user via a webpage, the user only goes
into my Sql DB, not app_data db. So when I pull a getusers I getonly the
app_data db users????
can anyone explain what is going on? I've checked the settings in aspnet
config tool.
Help??????
2005 developer edition. I've modified my webconfig file to point to my custom
provider:
<connectionStrings>
<add name="namegoeshere" connectionString="server=servername(or
localhost);database=dbname;uid=dbid;password=pass1;"
providerName="System.Data.SqlClient"/>
</connectionStrings>
<membership defaultProvider="CustomizedMembershipProvider">
<providers>
<add name="CustomizedMembershipProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="namegoeshere" />
</providers>
</membership>
what is weird is that I used the 'aspnet_regsql.exe' tool to create the
membership structure in my existing db. But I see an 'aspnetdb.mdb' file in
my App_Data directory. It it appears that that the 'AspNet Configuration
tool' is saving user data in two places???? The mdb and in my Sql DB??? I
noticed this when I attempted to add a user via a webpage, the user only goes
into my Sql DB, not app_data db. So when I pull a getusers I getonly the
app_data db users????
can anyone explain what is going on? I've checked the settings in aspnet
config tool.
Help??????