What is sql connector code for asp.net in the web config section? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is sql connector code for asp.net in the web config section?

please answered me

8th Jun 2018, 11:40 AM
YekeTehroon
YekeTehroon - avatar
1 Answer
+ 2
You need to add connection string to your config file: <connectionStrings> <add name="CustomerDataConnectionString" connectionString="Data Source=localhost;Integrated Security=SSPI;Initial Catalog=Northwind" providerName="System.Data.SqlClient" /> </connectionStrings> Please refer: https://msdn.microsoft.com/en-us/library/ms228094(v=vs.85).aspx
8th Jun 2018, 11:53 AM
Gopal Gautam
Gopal Gautam - avatar