I am using database in my website. But don't know what are the steps to upload database. Can somebody tell me in detail ? Please tell me Connection string also , and where I have to set connection string. Can I set in aspx file at the place of setting connection string for local server. I am using vb.net language for asp.net. Thanks.
The connection string should be in web.config file The connection string should be declared in the web.config file as follows <connectionStrings> <remove name="ASPNETDBConnectionString"/> <add name="ASPNETDBConnectionString" connectionString="Data Source=Your Server Name ;Initial Catalog=Your Database Name;User ID=Your username;Password=Your password;" providerName="System.Data.SqlClient"/> </connectionStrings>