jordanking
Programmer
- Sep 8, 2005
- 351
hello,
I have a creatUserWizard that works when i use the default connection string and provider but not when i use a custom provider. The custom provider works because if you go through the menu: Website/asp.net configuration and add a user everything is fine, also there is no error when you select the custom provider listed. The create user button of the control does not even trigger a postback on the page. Litteraly nothing happens when you push the button after adding all the user information.
The following is my web.config file code:
the following is the code on my signup page that has the createUserWizard control
does anyone have some suggestions on why nothing is happening or how I can debug this control?
Thanks
.....
I'd rather be surfing
I have a creatUserWizard that works when i use the default connection string and provider but not when i use a custom provider. The custom provider works because if you go through the menu: Website/asp.net configuration and add a user everything is fine, also there is no error when you select the custom provider listed. The create user button of the control does not even trigger a postback on the page. Litteraly nothing happens when you push the button after adding all the user information.
The following is my web.config file code:
Code:
<connectionStrings>
<add name="EFFU_Main" connectionString="Server=db005.zabco.net; UID=******; PWD=******; Database=******;" />
</connectionStrings>
...
<authentication mode="Forms" />
<membership defaultProvider="EFFUMembershipProvider">
<providers>
<add name="EFFUMembershipProvider"
connectionStringName="EFFU_Main"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
applicationName="/"
requiresUniqueEmail="false"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="5"
minRequiredPasswordLength="7"
minRequiredNonalphanumericCharacters="1"
passwordAttemptWindow="10"
passwordStrengthRegularExpression=""
type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</providers>
</membership>
the following is the code on my signup page that has the createUserWizard control
Code:
<asp:CreateUserWizard ID="CreateUserWizard1" runat="server">
<WizardSteps>
<asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server" />
<asp:CompleteWizardStep ID="CompleteWizardStep1" runat="server" />
</WizardSteps>
</asp:CreateUserWizard>
does anyone have some suggestions on why nothing is happening or how I can debug this control?
Thanks
.....
I'd rather be surfing