Webconfig Connectionstring To Connect Sql Server 2008 From Visual Studio 2012
What is connection string for the following SQL server 2008 properties: DB Name : testDB
Solution 1:
Try this connection string:
Server=K-PC;Database=testDB;Trusted_Connection=True;You can find more details on connection strings in this link: http://www.connectionstrings.com/sql-server/
Post a Comment for "Webconfig Connectionstring To Connect Sql Server 2008 From Visual Studio 2012"