vote up 0 vote down star

Hi all, I am facing problem when i am creating new user,using CreateUserWizard control.I have added in connection string :

<connectionStrings>
    <add name="BankingTransaction"
      connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Bank.mdf;integrated security=True;User Instance=True"
      providerName="System.Data.SqlClient"/>
</connectionStrings>

After adding this connection string in web.config file, when i am running the application i am able create the New user Sign up details. But when i am adding the following code in web.config file i am getting error "Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'." the code is:

<membership defaultProvider="DefaultMembershipProvider">
  <providers>
    <add connectionStringName="BankingTransaction" 
      enablePasswordRetrieval="true"
      enablePasswordReset="true"
      requiresQuestionAndAnswer="true"
      applicationName="/"
      requiresUniqueEmail="true"
      passwordFormat="Clear"
      minRequiredPasswordLength="3"
      minRequiredNonalphanumericCharacters="1"
      passwordStrengthRegularExpression=""
      name="DefaultMembershipProvider"
      type="System.Web.Security.SqlMembershipProvider"/>
  </providers>
</membership>

Please somebody help me whats wrong with my above red highlighted code.

Thanks, Masum

flag

0% accept rate
Hi Mr.ScarletGarden yea its yesterday's question since yesterday i am hanging out with this problem could not get the exact root of error. – unknown (yahoo) Mar 26 at 7:21
I remember your question, look below for my suggestion. hope it helps. By the way, if you update your question instead of asking new one people can see the suggestions that helped and not helped. – Canavar Mar 26 at 7:33

2 Answers

vote up 2 vote down

Please chek this and this and see if it solves your issue. I remeber seeing this question yeterday. Is it a duplicate? :)

link|flag
vote up 0 vote down

I think you should register your new database with ASP.NET SQL Server Registration Tool (Aspnet_regsql.exe) tool.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.