Then where the heck is your database?
It must be configured to be somewhere else. What is your connectionstring called btw, is it LocalSqlServer? That's the name of the default connectionstring that the provider use. Perhaps the db on your local machine has some tables that aren't present on the production?
Also, set trace="true" in the page directive on a page and put this in your page_load:
Trace.Write(ConfigurationManager.ConnectionStrings["LocalSqlServer"].ConnectionString);
Then you should see what database he's connecting to.
Mertil Interaktion
http://www.mertil.seBe a part of the Community Recognition Program. Click "Mark as Answer" on the post that answered your question. This gives you points and rewards the person who helped you as well.