views:

28

answers:

2

I want to use the built-in membership functionality that comes with the SQL Server Express database that is created when the project is built but I want to use it in my SQL Server database without having to re-create the wheel so to speak.

+1  A: 

Take a look at Setting up SQL Server with ASP.NET MVC it shows you all that you need

SQLMenace
Thanks. Is it possible to include the aspnetdb tables in the same db with my project data? The reason I ask is that some hosting providers charge per database. How do others handle this?
Jason
A: 

Yes, you can, what you need do is run aspnet_regsql against your own database, it will add all the database objects into your database.

J.W.