Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SqlMembershipProvider

Status
Not open for further replies.

fireemt1

Technical User
Jul 14, 2003
16
US
Ongoing problem in final stages. I'm trying to use Membership services in ASP.NET 2.0. To make a long story short, this is the problem.

I've had a heck of a time setting it up with SQL Server 2000 and have got the problem narrowed down to the CreateUser(blah, blah, blah) call by C# to create the user calls the "dbo.aspnet_CheckSchemaVersion" stored procedure in the SQL 2k database. This is where it fails. It is due to the db needing to be called as "dboxxxxxxx.aspnet_CheckVersion" where the x's are numbers.

Is there any way to override the method CreateUser to call the stored procedure as "dboxxxxx.aspnet_CheckSchemaVersion" instead of the dbo.

Thanks in advanced.
 
you can create a custom MembershipProvider if you wanted to, that is one option. Link
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top