Hello,
I am trying to figure out how to deploy my site to production.
They talk about connection strings and changing it for production. However, my web config connection strings look like this
Code:
<connectionStrings>
<add name="JamestownDatabaseEntities" connectionString="metadata=res://*/App_Code.Model.csdl|res://*/App_Code.Model.ssdl|res://*/App_Code.Model.msl;provider=System.Data.SqlClient;provider connection string="data source=.\SQLEXPRESS;attachdbfilename=|DataDirectory|\JamestownDatabase.mdf;integrated security=True;user instance=True;multipleactiveresultsets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
It has just the one connection string, but my aspnetdb works fine even though there is no connection string for it. What do I do to get my aspnetdb working in prod? Do I need to add a connection string for it in my web.config?
Ok. I found the
http://www.asp.net/web-forms/tutoria...ing-options-cs pages. So, I guess I will just look through that stuff for now. So, I deleted the novel I had in here. However, if someone can help me with the above question about aspnetdb connection string, that'd be great.