Trying to get membership set up on my application

Discussion in 'ASP.NET Starter Kits' started by UltraGnome, Oct 31, 2007.

  1. Vikram,

    That was exactly right, thanks for being so patient with a newbie /emoticons/smile.gif

    Julia
     
  2. I changed my Localsqlserver to the discount asp connection string, but I am getting this error when I try to add a user from my local Web Site Administrator:


    There is a problem with your selected data store. This can be caused by an invalid server name or credentials, or by insufficient permission. It can also be caused by the role manager feature not being enabled. Click the button below to be redirected to a page where you can choose a new data store.

    The following message may help in diagnosing the problem: Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'.


    Any advice on how to fix this would be welcome.

    Julia
     
  3. As the message states,the SP 'dbo.aspnet_CheckSchemaVersion' is missing.If you don't have much data in the membership tables I would recommend you to re-configure the membership schema:

    You can do the following:

    1. Open the command prompt on your local computer, and navigate to: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
    2. Execute the command: aspnet_regsql.exe -S DBServerName -U DBLogin -P DBPassword -A all -d DBName (Replace the place-holders with appropriate values)

    Vikram

    DiscountASP.NET
    www.DiscountASP.NET
     

Share This Page