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.
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.