我正在尝试在我的web.config文件(Visual Studio2008/ASP.NET3.5)中设置一个连接到本地服务器(SQL Server2008)的字符串。
在我的web.config中,我如何以及在哪里放置连接字符串?
下面是web.config文件现在的样子:http://imwired.net/aspnet/Online_web.config
发布于 2013-04-23 18:03:39
为您的连接字符串尝试此方法。
 Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI;
 User ID=myDomain\myUsername;Password=myPassword;https://stackoverflow.com/questions/5642474
复制相似问题