Hello fellow daniwebians, I'm attempting to wrap up an asp.net/c# eCommerce website recently created (recently discussed in many of my posts). I'm now trying to transfer the finished product from my local development environment to a remote host.
I can publish the files fine, I can reset the connection-strings as needed for my actual SQL server connection (where I pull product info from), but I can't seem to upload the database schema that is generated locally (temporary instances). This instance is created temporarily for the purposes of a model-driven shopping cart (loosely based off of this tutorial http://www.asp.net/web-forms/tutorials/aspnet-45/getting-started-with-aspnet-45-web-forms/shopping-cart).
I've changed the web.config file so that <compilation debug="false"/> , but whenever I go to the publish dialogue box, the only configuration setting I have is debug, not release (right click project name in solution explorer -> click publish web site -> click on Settings tab). Could this be part of the issue?
Hoping I don't have to manually create this database myself or something, as that would be tedious and makes migrations useless. Any ideas are much appreciated!