Hi,
I have an asp.net web page that has a standard createUserWizard and a login
control. They both use the same Firebird Membership provider to a 2.x
Firebird database. I can create new users, but they always fail when they
try to log in. Does anyone have any ideas why?
I am using the 2.1.0 version of the Firebird .Net Provider.
My web.config has:
<authentication mode="Forms">
<forms
name=".ProjectName"
loginUrl="~/Login.aspx"
defaultUrl="~/Readings.aspx"
protection="All"
timeout="86400"
slidingExpiration="true"
path="/">
</forms>
</authentication>
<membership defaultProvider="FireBirdMembershipProvider">
<providers>
<clear/>
<add name="FireBirdMembershipProvider"
connectionStringName="RMU_db"
applicationName="/"
type="Borland.Web.Security.AdoMembershipProvider,
FirebirdSql.Web.Providers,
Version=2.1.0.0,
Culture=neutral,
PublicKeyToken=3d06a02581b682f8"
passwordFormat="Clear"/>
</providers>
</membership>
<profile defaultProvider="FireBirdProfileProvider" enabled="true">
<providers>
<clear/>
<add name="FireBirdProfileProvider"
connectionStringName="RMU_db"
applicationName="/"
type="FirebirdSql.Web.Providers.FbProfileProvider,
FirebirdSql.Web.Providers,
Version=2.1.0.0,
Culture=neutral,
PublicKeyToken=3d06a02581b682f8"
/>
</providers>
</profile>
<roleManager defaultProvider="FireBirdRoleProvider" enabled="true">
<providers>
<clear/>
<add name="FireBirdRoleProvider"
connectionStringName="RMU_db"
applicationName="/"
type="FirebirdSql.Web.Providers.FbRoleProvider,
FirebirdSql.Web.Providers,
Version=2.1.0.0, Culture=neutral,
PublicKeyToken=3d06a02581b682f8"
/>
</providers>
</roleManager>
|