That in the web.config file there is a line that tell the website where to find the SQL server.
This line is
now the serverXXXX can be the server name or I also learn just "."
the catolog I belive is the database
user and password are the use and password for the database
This a learn since we were getting an error using a website something like this
which was caused by there being two web.config files for one site
This line is
<add name="OnlineOrderSystemConnectionString" connectionstring="Data Source=SERVERXXXXX;Initial Catalog=DBXXXX;User ID=SAXXX;Password=PASSXXX" providername="System.Data.SqlClient">
now the serverXXXX can be the server name or I also learn just "."
the catolog I belive is the database
user and password are the use and password for the database
This a learn since we were getting an error using a website something like this
ASP.NET to identify an incoming user.
Line 28: --> Line 29: <authentication mode="Windows
which was caused by there being two web.config files for one site
Comments