i have taken the default asp.net mvc template and customized to work for me. I want to now upload this to my hosting provider.
how do i get the sql server database into my server. Do i just upload the ASPNETDB.mdf file. What is this file actually? Does it represent the whole database.
Can i simply copy that file around to migrate my database.
The MDF file is the data file for your database. You would normally attach the database to the server instance, or take a backup of the database and restore it. However with your hosting provider this may not be possible, and you may need to create all the database objects again (via SQL scripts) and import any data that you require.
Attaching a database
Restoring a database