Posted: 12/23/2011
i m using connectionstring
<connectionStrings> <add name="ieguildString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|ieguild.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/> </connectionStrings>
this is for localhost.now i want to host my solution that contain 3 projects n i m using vs2008 inbuilt sql server n database .what r the needed changes
Thanks
Posted: 12/28/2011
changed the Data Source value to where your database is hosted like:
Data Source = <SERVER NAME>
And then your database name:
Initial Catalog = <DATABASE NAME>